第六题

戏唱故梦2025-04-10

代码

m = int(input())
if m % 3 == 0 or m % 7 == 0:
    print("Yes")
else:
    print("No")

运行结果

10
No
ON THIS PAGE