Computer Science, asked by ayushmaan2074, 6 hours ago

Predict the output x,y equal to 20,80 y,x,y equal to x,y-10, x+10 print(x,y)​

Answers

Answered by rabi3bhat
1

Explanation:

x = 20, y = 80;

y-10 = 80-10 = 70

x+10 = 20 + 10 = 30

print (70,30)

Similar questions