6 lines
85 B
Python
6 lines
85 B
Python
for _, i in enumerate(range(5, 19)):
|
|
print(_, i)
|
|
break
|
|
else:
|
|
print(9999)
|