int myfn(int a, int b) { if(a < b) { a = a+5; } else { b = b+2; } int c = a+b; return c; } int main() { int x = 7; int y = 9; return myfn(x, y); }