Var s,d,f,g,i:integer; begin for i:=10 to 99 do begin s:= i div 10;d:= i mod 10; f:= s+d; if (i*3 > f) and (sqr(f) = 3*s) then writeln(i);end;end.