Computer Science, asked by fahminarizwan20, 7 months ago

a=100
if a>99:
print(a,'is a three digit number')
else:
print(a,'is a two digit number')​

Answers

Answered by gaganadithyareddy9
17

Answer:

What do you want??

Do you want the output in python...?

a=100

if a>99:

print(a, 'is a three digit number')

else:

print(a, 'is a two digit number')

OUTPUT:

100 is a three digit number...

Answered by ranjaniranjue
0

output is 100

Explanation:

a is 100

so output is 100

Similar questions