var a,b:integer;
begin
readln(a,b);
if a>b then write (a, '>',b);
if a=b then write (a, '=',b);
if a<b then write (a, '<',b);
End.
var a,b:integer;
begin
readln(a,b);
if a>b then write (a, '>',b);
if a=b then write (a, '=',b);
if a<b then write (a, '<',b);
End.