turbo pascal.
Program qf;
uses crt;
var m,s:integer;
begin
clrscr;
writeln('введи возраст Маши');
readln(m);
writeln('введи возраст Саши');
readln(s);
if s>m then writeln('Саша старше Маши')
else
if m>s then writeln('Маша старше Саши')
else
if m=s then writeln('Саша и Маша ровесники');
readln;
end.