
/* Prints "Hello, world!" to the screen */
/*                                      */
/* Author: Zach Tomaszewski             */
/* Date: 22 Jan 2003                    */


#include <stdio.h>

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

