1 2 3 4 5 6 7 8 9 10 11
entier a; entier main(void) { entier a,b,res; a = 2; b = 3; res = a + b; print(res); res = a - b; print(res); }