Var sp, sm, cur:real; var i, n:integer; begin readln(n); for i := 1 to n do begin read(cur); if cur > 0 then sp := sp + cur; if cur < 0 then sm := sm + cur; end; if sp = -sm then writeln('|+| = |-|'); if sp > -sm then writeln('|+| > |-|'); if sp < -sm then writeln('|+| < |-|'); end.