Run ID:96120
提交时间:2024-11-03 09:16:49
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")