0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

atcoder練習(2024.1114)

Posted at

キーワード

命名規則,

問題

シカのAtCoDeerくんは二つの正整数
a,b を見つけました。
a と
b の積が偶数か奇数か判定してください。

制約
1

a,b

10000
a,b は整数
入力
入力は以下の形式で標準入力から与えられる。

a
b
出力
積が奇数なら Odd と、 偶数なら Even と出力せよ。

入力例 1
Copy
3 4
出力例 1
Copy
Even
3×4=12 は偶数なので Even を出力してください。

入力例 2
Copy
1 21
出力例 2
Copy
Odd
1×21=21 は奇数なので Odd を出力してください。

回答

a, b = map(int, input().split())

if a*b % 2 == 0:
  print("Even")
else:
  print("Odd")

参考

備考

  • EvenとOddが逆だった。命名規則の側面も合わせて英単語が意外と必要になる。合わせて英語も勉強してください。
  • inputとかだいぶ慣れてきた、やっぱり手を動かして体に染み込ませる方法がよさそう。
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?