int a,b; int c[5], d[6]; int e,f,g; read(a); /* 11 */ /* -11 */ read(b); /* 23 */ /* 22 */ if (a > 0) { c[0] = 1; d[0] = a; c[1] = c[0] + d[0] + b; } else { c[0] = a; /* -11 */ d[0] = a + b; /* 11 */ c[1] = c[0] - d[0]; /* -22 */ } e = c[0]; /* 1 */ /* -11 */ f = c[1]; /* 35 */ /* -22 */ g = d[0]; /* 11 */ /* 11 */ write(e); write(f); write(g);