output_description stringlengths 15 956 | submission_id stringlengths 10 10 | status stringclasses 3 values | problem_id stringlengths 6 6 | input_description stringlengths 9 2.55k | attempt stringlengths 1 13.7k | problem_description stringlengths 7 5.24k | samples stringlengths 2 2.72k |
|---|---|---|---|---|---|---|---|
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s367124112 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | def main():
a, b = map(int, input().split())
print('Odd') if a*B % != 0 else print('Even')
if __name__ == "__main__":
main()
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s455697165 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | # 2つの整数の取得
a,b = map(int,input().split())
# aもしくはbが偶数であるかをもとに結果を出力
if (a % 2) = 0 or (b % 2) = 0:
print("Even")
else:
print("Odd") | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s520610414 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a, b = list(map(int, input().split()))
# 整数 N 個 (改行区切り)
#N = [int(input()) for i in range(N)]
# 整数 N 個 (スペース区切り)
#N = list(map(int, input().split()))
# 整数 (縦 H 横 W の行列)
#A = [list(map(int, input().split())) for i in range(H)]
if a % 2 == 1 and b % 2 == 1:
print("Odd")
else:
print("Even") | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s873262455 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a = int(input())
b = int(input())
c = a*b
if(c%2==0)
print("Even")
else
print("Odd") | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s060329064 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a,b = map(int, input().split)
c = a * b
if c % 2 == 0:
print('Even')
else:
print('Odd') | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s151118998 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | A,B=input().split()
A=int(A)
B=int(B)
if A*B%2==0 :
print("Even")
else :
print("Odd") | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s166626849 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a,b = map(int, input().split())
c = a*b
mod = c % 2
if mod==0
print("Even")
else print("Odd")
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s035876572 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a = int(input())
b = int(input())
if (2 % a * b == 0) print("Even")
if (2 % a * b != 0) print("0dd")
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s038134814 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a,b = map(int, input().split())
c = a*b
if c % 2 == 1:
print(Odd)
else
print(Even)
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s048885807 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | sum = a + b
sumto = sum % 2
if sumto = 1:
response = 'Odd'
else:
response = 'Even'
return response | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s148050068 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | A,B=input().split()
A=int(A)
B=int(B)
if A*B%2==0 :
print("Even")
else :
print("odd") | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s874877773 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a = int(input())
b = int(input())
if a*b % 2 == 0:
print("Even")
else:
print("Odd")
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s693215572 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | l = input().split()
a = int(l[0])
b = int(l[1])
if (a * b) % 2 = 1:
print("Odd")
else:
print("Even") | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s353400072 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a b = map(int, input().split())
c = a*b
if c % 2 == 1:
print('Odd')
else:
print('Even')
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s446946608 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a, b = list(map(int, input().strip().split()))
c = a*b
if c%2 = 0:
print('Even')
else:
print('Odd') | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s078419050 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | N = list(map(int,input().split()))
math = N[0] * N[1]
if math % 2 = 1
return Odd
else
return Even | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s829507995 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a,b = map(int, input().split())
result = a * b
if result % 2 = 0:
print("Even")
else:
print("Odd") | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s046847074 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | # coding: utf-8
a, b = map(int, input().split())
print(['Odd', 'Even'][if a % 2 == 0 or b % 2 == 0]) | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s180700148 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | x,y = map(int,input().split())
if x*y %2==0:
print("Even")
elif x*y%2==1:
print("Odd")
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s810282489 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | input = (a, b)
int a
int b
int c = a * b
if a * b % 2 = 0:
print('Even')
else:
print('Odd')
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s299037084 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a, b = map(int, input().split())
if a*b % 2 ==0:
print("Even")
else:
print("Odd") | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s681619270 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a, b = map(int, input().split())
ans = (a*b)/2
if (ans === 0):
print('Even')
else:
print('Odd') | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s472216374 | Accepted | p03455 | Input is given from Standard Input in the following format:
a b | nums = input().split()
print("Even" if (int(nums[0]) & int(nums[1]) & 1) == 0 else "Odd")
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s990763794 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a,b=map(int,input().split())
if a*b % 2 = 0:
print("Even")
else:
print("Odd")
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s652761346 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | input_val = input()
if input_val mod == 0:
print ('Odd')
else:
print('Even') | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s044749200 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a, b = map(int, input().split())
if ((a*b) % 2) == 1
print("Odd")
else
print("Even")
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s148052311 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a, b = map(int, input().split())
if a * b % 2 = 0:
print('Even')
else:
print('Odd') | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s409057728 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | A,B = map(int, input(.split()))
if A*B%2 == 0:
print("Even")
else:
print("Odd") | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s366872919 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a, b = int (input().split())
c = a*b % 2
if c=0 :
print("Even")
else:
print("Odd")
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s330430250 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a, b = map(int, input().split())
c = a * b
if c %= 0:
print('Even')
else:
print('Odd') | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s929380233 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a, b = map(int, input().split())
if (a*b)%2 == 0:
print('Even')
else:
print('Odd') | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s497237690 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a = int(input())
b = int(input())
if a * b % 2 = 0:
print("Even")
else :
print("Odd") | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s533334801 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | l = input().split()
a, b = l[0], l[1]
if (a*b)%2 == 0:
print("Even")
else
print("Odd") | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s259039375 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a, b = int(input().split())
c = a * b
if(c%2 = 0):
print('Even')
else:
print('Odd') | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s842322054 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a=0,b=0
a=>1
b<=10000
input(a,b)
if a*b/2=0:
print("Even")
else:
print("Odd")
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s898078716 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a=int(input())
b=int(input())
if a*b%2==1:
print('Odd')
elif a*b%2=0:
print('Even') | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s566435363 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | x, y = map(int, input().split())
if x * y % 2 = 1:
print('Odd')
elif
print('Even') | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s496155157 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a = int(input().split)
c = int(a*b)
if(c%2==0)
print("Even")
else
print("Odd") | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s650200248 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a, b = map(input(), split())
if a*b % 2 == 0
print('Odd')
else
print('even') | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s741958912 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | x,y = map(int,input.split())
if x*y % 2 == 0 :
print("Even")
else print("Odd")
end
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s615781970 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a, b = map(int, input().split())
if ((a*b)%2 == 0)
print("Odd")
else
print("Even") | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s371115331 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a, b = map(int,input().split())
if (a * b) % 2 == 0:
print("Even")
elif
print("Odd") | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s098959011 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a, b = map(int, input().split())
if a * b % 2 = 0
print("Even")
else:
print("Odd")
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s754801044 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a, b = map(int,input().split())
if (a * b) % 2 == 0:
print("Even")
else
print("Odd") | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s272899991 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a = int(input())
b = int(input())
x = a*b
if x % 2:
print("Even")
elif:
print("Odd") | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s659343330 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a, b = map(int, input().split())
if a * b % == 0:
print('Even')
else:
print('Odd')
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s637958574 | Wrong Answer | p03455 | Input is given from Standard Input in the following format:
a b | n = input().split()
x = int("".join(n))
print("Yes") if x // x**0.5 == x**0.5 else print("No")
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s721529423 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a, b = map(int, input().split())
c = (a*b)%2
if c == 0:
print("Even")
else
print("Odd")
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s803810434 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a,b = map(int,input().split())
if a*b%2 == 0
print (Even)
else:
print (Odd) | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s022167492 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a=int(input())
b=int(input())
if a*b%2===0
print('even')
if a*b%2===1
print('odd') | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s954177441 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a = input()
b = input()
ans = a*b
if ans%2 = 0:
print("Even")
else:
print("Odd")
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s704265672 | Accepted | p03455 | Input is given from Standard Input in the following format:
a b | print("Odd" if all([int(e) & 1 for e in input().strip().split()]) else "Even")
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s315827514 | Accepted | p03455 | Input is given from Standard Input in the following format:
a b | print("Odd" if all([int(i) % 2 for i in input().split()]) else "Even")
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s328592371 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a,b=map(int,input().split())
if(a*b)%2:
print("Odd")
else:
print("Even")
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s830605446 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a=int(input(a))
b=int(input(b))
if (a*b)%2 =0
print ('Even')
else:
print ('Odd') | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s032445708 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | if int(input())*int(input())%2 == 0:
print("Even")
else:
print("Odd") | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s116653668 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a,b = map(int,imput().split())
if (a * b) % 2 = 0:
print(Even)
else:
print(Odd) | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s576338445 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | if (a*b)%2 == 0:
print(Even)
else:
print(Odd) | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s697944045 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | l = input().split()
if (l[0] * l[1]) % 2 == 0 :
print("Even")
else
print("Odd") | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s856576798 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | print(["Odd", "Even"][int(input())*int(input())%2 == 0] | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s729806504 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a,b = map(int, input())
c = a*b
if c%2 = 0,
print("Even")
else print("Odd") | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s542289836 | Wrong Answer | p03455 | Input is given from Standard Input in the following format:
a b | print(1)
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s783794599 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a,b = map(int,input())
if a*b%2 = 0:
print(Even)
else:
print(Odd) | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s169686031 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s751767061 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | x, y = map(int, input().split())
if x * y % 2:
print('Odd')
elif:
print('Even') | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s396142935 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a,b = map(int,input().split())
if (a*b)%2 = 1
print(odd)
print(even) | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s641319742 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | c=a*b
if c%2=0:
print("Even")
else:
print("Odd") | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s397299672 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a = 3
b = 4
int(c) = a * b
if c % 2 == 0:
print("Even")
else:
print("Odd")
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s856127841 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a,b=map(int,input()split())
if(a*b)%2:
print("Odd")
eles:
print("Even") | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s119977157 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | mod = ( a * b )%2
if mod == 0:
print'Even'
else:
print'Odd' | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s952713736 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a,b,c=map(int, input().split())
if (a*b)%2==0:
print('Even')
esle:
print('odd') | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s810242862 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | print(a)
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s524786764 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | def method()
if a*b%2==0:
return 'Even'
else:
return 'Odd' | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s722073475 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | aaaa
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s117478892 | Wrong Answer | p03455 | Input is given from Standard Input in the following format:
a b | print(input().count("1"))
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s527184743 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a * b = c
if c / 2 == 0:
print(Even)
else:
print(Odd)
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s020187516 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a=0
b=0
if a*b/2==0:
print("Even")
else a*b/2==1:
print("Odd")
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s632991414 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a = input()
b = input()
if a*b % 2 = 0:
print("Even")
else :
print("Odd") | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s176162141 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | "c" = a * b
if c % 2 == 0:
print("Even")
else:
print("Odd")
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s469342880 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a, b = input()
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s418077668 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a,b = int(input().split())
if a*b % 2 == 0:
print('Even')
else print('Odd'): | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s448572218 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a,b=map(int,input().split())
if a*b%2==0
print("Even")
else
print("Odd") | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s715570992 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a = input()
a = int(a)
b = input()
b = int(b)
c = a * b
if c % == 2:
print("Even")
else:
print("Odd")
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s986814825 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | input_1, input_2 = [s for s in input().split()]
multiple = input_1 * input_2
judge = multiple % 2
if judge ==0:
print("Even")
elif:
print("Odd")
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s107231730 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | import math
a, b = input().split()
c = int(a + b)
if (int)math.sqrt(c) - math.sqrt(c) == 0:
print("Yes")
else:
print("No") | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s684175090 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a,b = (int(x) for x in input().split())
int c = a * b
if (c % 2 == 0):
print("Even")
else :
print("odd") | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s655669456 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | # -*- coding: utf-8 -*-
a, b = map(int, input().split())
c = a * b
if c % 2 == 1:
print("Odd")
else:
print("Even")
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s024132247 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | li = list(map(int(input().split()))
if li[0] % 2 == 0 or li[1] & 2 == 0:
print("Evem")
else:
print("Odd")
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s330496691 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | # -*- coding: utf-8 -*-
# スペース区切りの整数の入力
b, c = map(int, input().split())
# 積の計算と余りの判別
mod = (b*c)%2
# 出力
if(mod==0)
print('Even')
else
print('Odd') | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s865701994 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a,b=map(int,input().split())
if((a*b)%2 == 0):
print('Even')
else:
print('Odd') | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s690301805 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | def evenodd(a, b):
sum = a + b
sumto = sum % 2
if sumto = 1:
response = 'Odd'
else:
response = 'Even'
return response | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s591600894 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | input_num = map(int, input().split())
seki = input_num[0] * input_num[1]
if seki % 2 == 0:
print("EvenW\")
else:
print("Odd") | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s227573433 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | int main() {
int a, b;
cin >> a >> b;
int c = a * b;
if (c % 2 == 0) cout << "Even" << endl;
else cout << "Odd" << endl;
} | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s732355734 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | import functools
print("Even" if functools.reduce(lamda x,y:x*y,map(int,input().split())) %2==0 else "Odd")
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s370090037 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | a,b = map(int, input().split())
d = (a * b)
e = d % 2
if e = 0:
print("Even")
else e = 1:
print("Odd") | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s053100580 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | A[] = int(input().split())
a = A[0]
b = A[1]
c = (a * b) % 2
if c == 0:
print('Even')
else:
print('Odd')
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s467470191 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | in = map(int(),input().strip().split(" "))
res = in[0] * in [1] %2
if res ==0:
print("Even")
else:
print("Odd")
| Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s107220892 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | def is_bool(x):
return isinstance(x,int) and bool(1 <= x) and bool(x <= 10000)
def checker(a, b):
if is_bool(a) and is_bool(b):
if (a * b) % 2 == 0:
return 'Even'
else:
return 'Odd'
print(checker(2, 3)) | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s548452389 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | # -*- coding: utf-8 -*-
# スペース区切りの整数の入力
a, b = map(int, input().split())
# 出力
if (a*b) % 2 = 0:
print("Even")
else:
print("Odd") | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
If the product is odd, print `Odd`; if it is even, print `Even`.
* * * | s155451246 | Runtime Error | p03455 | Input is given from Standard Input in the following format:
a b | t = [0]
x = [0]
y = [0]
N = int(input())
for i in range(1,N+1):
ti,xi,yi = map(int,input(),split())
t.append(ti)
x.append(xi)
y.append(yi)
flg = True
for i in range(1,N-1):
if t[i]-t[i-1] < x[i]-x[i-1] + y[i]-y[i-1]:
flg = False
else (t[i]-t[i-1])%2 != (x[i]-x[i-1]+y[i]-y[i-1])%2:
flg = False
if(flg):
print("Yes")
else:
print("No") | Statement
AtCoDeer the deer found two positive integers, a and b. Determine whether the
product of a and b is even or odd. | [{"input": "3 4", "output": "Even\n \n\nAs 3 \u00d7 4 = 12 is even, print `Even`.\n\n* * *"}, {"input": "1 21", "output": "Odd\n \n\nAs 1 \u00d7 21 = 21 is odd, print `Odd`."}] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.