Run ID:96117
提交时间:2024-11-03 09:15:28
n=int(input()) f=0 for x in range(2,n): if n%x==0: f=0 break if f=1: print("No") else: print("Yes")