2018-10-25(素数)

def S(x):
for one in range(2,x):
if x%one ==0:
return 0
return 1
【2018-10-25(素数)】print(S(13))

    推荐阅读