Editorial for f91
Remember to use this editorial only when stuck, and not to copy-paste code from it. Please be respectful to the problem author and editorialist.
Submitting an official solution before solving the problem yourself is a bannable offence.
Submitting an official solution before solving the problem yourself is a bannable offence.
import sys
def f91(n):
if n <= 100:
return 91
return n - 10
for n_str in sys.stdin.readlines():
n = int(n_str)
if n == 0:
break
res = f91(n)
print(f"f91({n}) = {res}")
Comments