Predict the output of the following code fragments:
x = 10 y = 0 while x > y: print (x, y) x = x - 1 y = y + 1
10 0 9 1 8 2 7 3 6 4