//test add int mul(int x, int y) { return x * y; } int main(){ int a, b; a = 10; b = 3; a = mul(a, b); //60 return a + b; //66 }