int foo(int a, int b) { return a + b; } int main() { int a = 1; int b = 2; foo(a, b); int c = foo(a,b); bool f = true; return 0; }