python/24-6-16-1.py

8 lines
101 B
Python

a=""
x=int(input())
for i in range(2,x):
if x%i==0:
a="不是"
break
print(a)