2026020401
try:
a = int(input('Please input a number (0-9):'))
if a > 10:
assert False, 'The number must be less than 9'
print(a)
except AssertionError as msg:
print(msg)
except TypeError:
print('Program Error: It must be a number')INFO