結果
| 問題 | 
                            No.1543 [Cherry 2nd Tune A] これがプログラミングなのね
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2021-06-11 21:35:51 | 
| 言語 | Python3  (3.13.1 + numpy 2.2.1 + scipy 1.14.1)  | 
                    
| 結果 | 
                             
                                RE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 190 bytes | 
| コンパイル時間 | 361 ms | 
| コンパイル使用メモリ | 12,544 KB | 
| 実行使用メモリ | 10,752 KB | 
| 最終ジャッジ日時 | 2024-12-14 22:38:06 | 
| 合計ジャッジ時間 | 2,545 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 24 RE * 11 | 
ソースコード
a,b,c = input().split()
if c == '=':
    if int(a) == int(c):
        print("YES")
        exit()
    else:
        print("NO")
        exit()
else:
    print("YES" if eval(a+c+b) else "NO")