結果
| 問題 | 
                            No.1113 二つの整数 / Two Integers
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2020-07-20 21:28:04 | 
| 言語 | PyPy3  (7.3.15)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 44 ms / 1,000 ms | 
| コード長 | 188 bytes | 
| コンパイル時間 | 446 ms | 
| コンパイル使用メモリ | 82,432 KB | 
| 実行使用メモリ | 52,480 KB | 
| 最終ジャッジ日時 | 2024-12-24 14:07:27 | 
| 合計ジャッジ時間 | 1,820 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge4 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 15 | 
ソースコード
a,b=map(int,input().split())
import math
x=math.gcd(a,b)
root=int(x**0.5//1)
for i in range(max(1,root-1), root+1):
    if pow(i,2)==x:
        print('Odd')
        exit()
print('Even')