x=30
y=x+5
x=20, y+x
print(x,y)
Answers
Answered by
1
Answer:
(55,35)
Explanation:
If x = 30
then, y = 30 + 5
y = 35
now, x = 20
so, 20 + 35 = 55
print (x,y) = (55,35)
Answered by
1
Answer:
print(x,y) is such that
(x,y)=(20,35)
Similar questions