

# https://www.globalsino.com/ICs/
# Retry a number of times

for i in range(0,5):
    while True:
        try:
            InputNumber = int(input("Please input a number: "))
            
        except SomeSpecificException:
            continue
        break
