Составить программу. вычеслить выражение y=2x+8
Uses crt; var x, y:integer; begin write('x='); read(x); y:=2*x+8; writeln('y=',y); end.