結果

問題 No.1543 [Cherry 2nd Tune A] これがプログラミングなのね
ユーザー 310icecrystal
提出日時 2023-07-05 06:16:09
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 163 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 81,948 KB
実行使用メモリ 66,780 KB
最終ジャッジ日時 2024-07-19 00:41:10
合計ジャッジ時間 3,311 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other RE * 35
権限があれば一括ダウンロードができます

ソースコード

diff #

S,T,c = map(int,input().split())

S = int(S)
T = int(T)

if (c == ">" and S > T) or (c == "<" and S < T) or (c == "=" and S == T):
	print("YES")
else:
	print("NO")
0