print("Ingrese una dos números para dividirlos") num1= int(input()) num2= int(input()) if num2 == 0: print("División indeterminada") else: print(num1/num2)
To embed this project on your website, copy the following code and paste it into your website's HTML: