結果

問題 No.3032 ホモトピー入門
ユーザー lam6er
提出日時 2025-04-15 22:15:16
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 220 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 67,200 KB
最終ジャッジ日時 2025-04-15 22:17:10
合計ジャッジ時間 4,539 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 37
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
for _ in range(n):
    a, b = map(int, input().split())
    d = a - b
    if d == 0:
        print('=')
    else:
        if (d + abs(d)) == 0:
            print('<')
        else:
            print('>')
0