mirror of
https://github.com/TheAlgorithms/Python.git
synced 2026-03-13 09:50:19 +08:00
Improved Code and removed Warnings (#483)
This commit is contained in:
@@ -19,7 +19,7 @@ def isprime(no):
|
||||
return True
|
||||
|
||||
maxNumber = 0
|
||||
n=int(input())
|
||||
n=int(raw_input())
|
||||
if(isprime(n)):
|
||||
print(n)
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user