1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
int main1 (int a) { int b; int z; b = a; { int g; int c; c = b; g = c; z = g + c; } return z + 1; }