try: x = int(input('Enter the first number: ')) y = int(input('Enter the second number: ')) print(x/y)except ZeroDivisionError: print("输入的数字不能为0")