QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#622997 | #5732. Even or Odd | Awesom3eric | RE | 0ms | 0kb | Python3 | 106b | 2024-10-09 09:28:34 | 2024-10-09 09:28:35 |
answer
n = input()
if n == 1:
print("Either")
elif n % 2 == 0:
print("Odd")
else:
print("Even")
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Dangerous Syscalls
input:
1