mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-19 19:03:02 +08:00
all valid python 3
This commit is contained in:
@ -19,7 +19,7 @@ def isprime(no):
|
||||
return True
|
||||
|
||||
maxNumber = 0
|
||||
n=int(raw_input())
|
||||
n=int(input())
|
||||
if(isprime(n)):
|
||||
print(n)
|
||||
else:
|
||||
|
Reference in New Issue
Block a user