Write a loop to print 56 to 70 inclusive (this means it should include both the 56 and 70). The output should all be written out on the same line.
# print(*range(56, 71)) for i in range(56, 71): print(i, end=' ')