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
1
Explanation:
x = 20, y = 80;
y-10 = 80-10 = 70
x+10 = 20 + 10 = 30
print (70,30)
Similar questions