Computer Science, asked by princy733, 6 months ago

X, X = 20, 30
y, y = x + 10, X + 20
print (x, y)
Well, it will print the output as
30 50
Now you know why ?
Why the answer is 30 and 50​

Answers

Answered by omkarchaudhari
0

Explanation:

x=20

X=30

y=x+10

y=20+10

y=30

Y=X+20

Y=30+20

Y=50

Similar questions