Run ID:96109

提交时间:2024-11-03 09:07:54

n=int(input()) for x in range(2,n): if n%x==0: print("No") break else: print("Yes")