Computer Science, asked by Faizanmfk5958, 7 months ago

x,x=20,30
y,y=x+10,x+20
print(x,y)
Output=30,50
How???

Answers

Answered by Imblank
0

Answer:

First we assign x value as 20 then we overwrite with 30

then we assign y's value as 40(x(30)+10) then we overwrite y's value to 50(30(x)+20)

Read my bio

Similar questions