Program vewestvennoemax; var max,a,b:real; begin readln(a,b); if a>b then max:=a else max:=b; writeln('Maksimalnoe= ',max); end.