1 2 3 4 5 6 7
try: a = input() print(100 / int(a)) except ValueError as e: print(e) except ZeroDivisionError as e: print(e)