Process integer input

Report a typo

Write a program that reads integers from the console, one number per line.

For each input number you should check:

  • if the number is less than 10, then skip this number;
  • if the number is greater than 100, then stop reading numbers from the console;
  • in other cases, print this number back to the console on a separate line.

Sample Input 1:

12
4
2
58
112

Sample Output 1:

12
58

Sample Input 2:

101

Sample Output 2:

Sample Input 3:

1
2
102

Sample Output 3:

Write a program in Python 3
# put your python code here
___

Create a free account to access the full topic