6. Predict the output

x, y = 20, 60
y, x, y = x, y-10, x+10
print(x, y)

# output
50 30