99 Problems
This commit is contained in:
10
99problems.py
Normal file
10
99problems.py
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
n = int(input())
|
||||||
|
|
||||||
|
x = n % 100
|
||||||
|
if x < 49:
|
||||||
|
n -= x + 1
|
||||||
|
else:
|
||||||
|
n += 99 - x
|
||||||
|
if n < 0: n = 99
|
||||||
|
|
||||||
|
print(n)
|
||||||
Reference in New Issue
Block a user