Computer Science, asked by triggerAVS5976, 6 months ago

A = 55 b = a + 4 a = 30, b + 2 print(b, a)

Answers

Answered by shuklaabhyuday925
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