fork download
  1. # cook your code here
  2. def primeVerification():
  3. n= int(input("please enter prime number:"))
  4. if n==1:
  5. print("not prime")
  6. elif n%2==0:
  7. print(n, "prime")
  8. else:
  9. print(n,"not prime")
  10.  
Success #stdin #stdout 0.02s 9072KB
stdin
Standard input is empty
stdout
Standard output is empty