#include <stdio.h>					// Import the Standard Input Output library

int									// GCC compiler require main() to return an int
main()								// main function to be executed when program runs
{
	printf("Hello, world!\n");		// Print "Hello, world!" to the user, with newline
	return 0;						// Terminate the program with status 0
}