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.

Sample run:
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70

Respuesta :

In python:

for i in range(56, 71):

   print(i, end=" ")

113971

Answer:

for n in range(56,71):

   print(n, end=" ")

Explanation: