In the middle

Report a typo

Write a program that reads an integer value from input and checks if it is less than 10 or greater than 250.

Sample Input 1:

0

Sample Output 1:

True
Write a program in Python 3
# don't modify this code
# a stores an input value
a = int(input().strip())

# put your code here
___

Create a free account to access the full topic