結果
| 問題 | No.683 Two Operations No.3 | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2022-03-12 15:41:02 | 
| 言語 | PyPy3 (7.3.15) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 100 bytes | 
| コンパイル時間 | 171 ms | 
| コンパイル使用メモリ | 82,164 KB | 
| 実行使用メモリ | 54,068 KB | 
| 最終ジャッジ日時 | 2024-09-16 22:53:35 | 
| 合計ジャッジ時間 | 1,554 ms | 
| ジャッジサーバーID (参考情報) | judge6 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 12 WA * 4 | 
ソースコード
A,B = map(int, input().split())
if A % 2 == 1 and B % 2 == 1:
    print('No')
else:
    print('Yes')
            
            
            
        