Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
116739 杨嘉陆 07判断奇数 Python3 Wrong Answer 34 MS 3744 KB 62 2025-04-12 13:29:39

Tests(0/10):


Code:

a=int(input()) if a%2==0: print("Yes") else: print("No")


Run Info:

------Input------
14
------Answer-----
No
------Your output-----
Yes