try:
user_num = int(input())
div_num = int(input())
print(user_num// div_num)
except ZeroDivisionError as e:
print("Zero Division Exception: ", e)
except ValueError as a:
print("Input Exceptiopn:", a )
To embed this project on your website, copy the following code and paste it into your website's HTML: