Run ID:118483
提交时间:2025-05-04 08:59:41
def 判断素数(n): for i in range(2,n): if n%i==0: print("not prime") return print("prime") n=int(input()) 判断素数(n)