Даны два числа x и у, большее из них возвести в квадрат
Var a,b,max:Integer; Read(a,b); if (a>b) then max:=a*a else if (b>a) then max:=b*b; Writeln(max); end.