#include <stdio.h> int f (int a) { return a*a; } void g (int a,int b) {printf("%d\n",a+b);} int main(void) { printf("%d\n",f(3)); g(3,8); return 0; }