Run ID:118482

提交时间:2025-05-04 08:59:04

def p(n): for i in range(2,n): if n % i == 0: print("not prime") return print("prime") n = int(input()) p(n)