Computer Science, asked by shristigupta6801, 10 hours ago

Find the algorithm of two numbers and find its sum check whether the result is greater than 100or not

Answers

Answered by veeraswamy708
1

Check number is greater than 100 or not Programmer - Vineet Choudhary Written For - http://developerinsider.co Compiler - gcc ...

I hope it May helpful to you ...

Answered by rohankishore746
0

Answer:

num = int(input("Enter number"))

if num > 100:

print("Number is greater than 100")

else:

print("Number is less than 100")

Explanation:

I gave the solution in Python. Sorry if you are asking about any other languages. if this was helpful, then please mark me as brainliest. Thanks

Similar questions