//
// main.cpp
//         the "Hello World" program
//
//
// Author: Lei Hu (screenshot of the confused)
//
// Email: lhu@cs.utah.edu
// Online Resume: http://www.cs.utah.edu/~lhu/resume.html
//

#include <stdio.h>

int main()
{
  printf("Hello World!\n");
  return 0;
}