program ideone; var i:integer; begin i:=10; if(i<0) then writeln(i,' < 0'); if(i>0) then writeln(i,' > 0'); if(i=0) then writeln(i,' = 0'); end.