5. Predict the output :

x = 40
y = x + 1
x = 20, y+x
print(x, y)

# output
(20, 81) 41