Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
129044 叶航帅 07判断奇数 Python3 Accepted 60 MS 3744 KB 82 2025-08-21 16:19:09

Tests(10/10):


Code:

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