Run ID:96108

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

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