Computer Science, asked by sainavin7930, 9 months ago

This code is supposed to take two numbers, divide one by another so that the result is equal to 1, and display the result on the screen. Unfortunately, there is an error in the code. Find the error and fix it, so that the output is correct.

Answers

Answered by sreebhaskar6376
21

Answer:

1

Explanation:

numerator=10

denominator=0

result=int(numerator/(denominator+10))

print(result)

Similar questions