1 2 3 4 5 6 7 8 9 10 11 12
main () { int i = 0; int a (int x) { while (x) i++, x--; return x; } a (2); exit (0); }