/* Print hello to stdout ;-) */ #include <stdio.h> #include <stdlib.h> int main(void) { puts("hello"); return EXIT_SUCCESS; }