Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
104770 6倪葭轩 07判断奇数 Python3 Wrong Answer 31 MS 3744 KB 73 2025-01-11 10:24:09

Tests(0/10):


Code:

n=input() n=int(n) if n%2==1: print('YES') else: print('NO')


Run Info:

------Input------
14
------Answer-----
No
------Your output-----
NO