A = 55 b = a + 4 a = 30, b + 2 print(b, a)
Answers
Answered by
1
Answer:
34,30
Explanation:
A = 55
a = 30
b = a + 4
b + 2
print(b, a)
Please tell me why "A = 55"
did you mean "a" by "A"?
if yes then also there will be no change in output...becoz of changing the value of"a" to 30 in second line....
Similar questions