Computer Science, asked by Karankumar6731, 1 year ago

Write a program to check the given number is less than 100

Answers

Answered by sakshamvvip
4

Answer:

I am assuming the language is python

Explanation:

a = int(input("Enter a number: "))

if a < 100:

      print("The number is less than 100")

Similar questions