Run ID:96121

提交时间:2024-11-03 09:17:09

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")