⌨️
[AtCoder]ABC-086|A - Product
設問ページ
提出結果
def getIntMap():
return map(int, input().split())
def main():
a, b = getIntMap()
print('Even' if a % 2 == 0 or b % 2 == 0 else 'Odd')
if __name__ == "__main__":
main()
def getIntMap():
return map(int, input().split())
def main():
a, b = getIntMap()
print('Even' if a % 2 == 0 or b % 2 == 0 else 'Odd')
if __name__ == "__main__":
main()
Discussion