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:
@@ -12,7 +12,7 @@ for i in range(999,100,-1):
|
||||
arr.append(i*j)
|
||||
arr.sort()
|
||||
|
||||
n=int(input())
|
||||
n=int(raw_input())
|
||||
for i in arr[::-1]:
|
||||
if(i<n):
|
||||
print(i)
|
||||
|
||||
Reference in New Issue
Block a user