int work (int a) { return a * 2; } int main (void) { int a = 10; int b = work (a); b = work (b); a = b * a; return 0; }