const int a=1;
const b=2;
int x=3;
int y;
x=x+a; (1)
y=a+b; (2)
a=a+1; (3)
b=a; (4)
Precizați care instrucțiuni sunt greșite.