Exercise 3.7
input = list(range(1,101))
j = 0
for i in input:
if i % 5 == 0:
j = (i//5)
print(i, '==' ,j, '*' ,5)
INFO
input = list(range(1,101))
j = 0
for i in input:
if i % 5 == 0:
j = (i//5)
print(i, '==' ,j, '*' ,5)