/* First C demo program. Print "hello" */
/* CSE 374 lecture 22sp, HP */

#include <stdio.h>     // for printf
#include <stdlib.h>    // for EXIT_SUCCESS

int main(int argc, char ** argv) {
  printf("Hello!\n");
  return EXIT_SUCCESS;
}