Run ID:67165

提交时间:2024-03-14 20:10:18

def isPrime(n): if n<2: return "No" for x in range(2,int(n**0.5) +1): if n%x ==0: return "No" return "Yes" n = int(input()) res = isPrime(n) print( res )