Math, asked by aastha544, 7 months ago

70. Find output:
a=10
if(a>10 and a<=20):
a=a+10
if(a<10 and a>20):
a=a+20
if(a<20 and a<10):
a=a+30
print(a)​

Answers

Answered by brainly66990
1

Answer:

output>> 10

Step-by-step explanation:

none of the condition satisfy, so value of 'a' will remain the same.

Similar questions