#include "stdio.h" int add(int a,int b) { return a + b; } int sub(int a,int b) { return a-b; } int main() { printf("hello world!"); return 0; }