# Convert the following while loop into a for loop that produces the same output i = 7 while i > -3: print(i*i) i -= 1