Create a program: Given a natural three-digit number. If 2 digit is greater than 1, then we output “yes” otherwise “no”

Python program:
str = input (‘number:’)

try:
int (str)
if len (str) == 3:
print (‘YES’)
else:
print (‘NO’)
except:
print (‘ERR’)



One of the components of a person's success in our time is receiving modern high-quality education, mastering the knowledge, skills and abilities necessary for life in society. A person today needs to study almost all his life, mastering everything new and new, acquiring the necessary professional qualities.