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