⌨️[AtCoder]ABC-086|A - Product2023/01/12に公開ツイートPythonAtCoder#abctech 設問ページ 🔗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() ツイートDiscussionログインするとコメントできますLogin
Discussion