8 lines
59 B
Python
8 lines
59 B
Python
s, n = 6, 60
|
|
while n > s:
|
|
s += 1
|
|
n -= 2
|
|
print(n)
|
|
|
|
# 24
|