# created by swy
"""
solutions to beginning python
"""
print(5 * 10)
# created by swy
"""
solutions to beginning python
"""
for i in range(6, 25):
print("%o\t" % i)
# created by swy
"""
solutions to beginning python
"""
for i in range(9,16):
print("%x" % i)