/* Pro021.c */
/* How to print a text?  Please use printf(). */
/* All the way, the first C lesson */

#include <stdio.h>

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