竞赛
考级
n >= 4 确保可以至少分成 2 和 2。 n % 2 == 0 确保 n 是偶数。 话不多说,直接上代码: n = int(input()) if n >= 4 and n % 2 == 0: print("YES") else: print("NO")
扶摇万里 (互关)