提交时间:2024-11-15 18:49:42

运行 ID: 300093

n = int(input()) if n % 7 == 0 and n % 2 == 1: print("YES") else: print("NO")