print('Hello world!')
class loop:
O = 0
def __enter__(p):
return p
def __exit__(p,exc_type,exc_val,exc_tb):
if loop.O < 26:
loop.O += 1
with loop():
print(loop.O,end=" ")
with loop():
print("",end="")
To embed this project on your website, copy the following code and paste it into your website's HTML: