S=(a+5)*b решите пожалуйста
Var a,b,s: integer; begin writeln('Введите a,b'); readln(a,b); s:=(a+5)*b; writeln(s); End.