⌨️

[AtCoder]ABC-086|A - Product

2023/01/12に公開

設問ページ

提出結果

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