# Online Python compiler (interpreter) to run Python online.
# Write Python 3 code in this online editor and run it.
print("Hello world")
for i in range(4):
print("B")
for i in range(5):
print(i)
for i in range(1, 4):
print(i)
for i in range(2, 5):
print(i)
for i in range(0, 10, 2):
print(i)
for i in range(6):
print(9 * "@")
print(1 * "@")
print(2 * "@")
print(3 * "@")
print(4 * "@")
print(5 * "@")