Напишите программу в Паскаль пожалуйста y=x+5/x-3 (x-3)<>0
1) program abc; var x, y: integer; begin read(x); y:=(x+5)/(x-3) write(y);