99 Problems

This commit is contained in:
2022-05-13 22:58:52 +02:00
parent d33f7ca4f3
commit 6f07466744

10
99problems.py Normal file
View 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)