Answer:
for i in range(56,71):
print(i)
Step-by-step explanation:
By the range 56 to 71 it means that for loop will run when i=56 to i=71, but the upper bound is one less than the upper bound, and which is 70. So the above loop will print integers from 56 to 70.
And the above code is in Python.