/*
 * Problem 1-1
 * The famous hello,world program
 * Copyright (c) 1998 by John Weber.  All rights reserved.
 */
#include <stdio.h>

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