#include<stdio.h> int sayHello(){ printf("hello\n"); return 0; } int main(){ sayHello(); return 0; }