1 2 3 4 5 6
#include <stdio.h> main() { int x = 5; int y = 7; printf("%d + %d = %d \n", x, y, x+y); }
Nazaj...