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.
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
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.