Computer Science, asked by agrimgaut, 1 month ago

x,y=10,12 x,y,x=y,x+2,x+5 print(x,y) ​

Answers

Answered by Anonymous
1

Answer:

x,y=2,6

x,y=y,x+2

print ( x,y )

python output for this is 6 4

Similar questions