Re-write the following function with a For loop instead of While loop
x = 0 y = 1 while x<8: while y<5: print(x, y) y+=1 x+=2 The answer