Let's say you run the code below and enter different inputs. Match the integers you input with the results of the program.
a = int(input('Print the integer here! '))
b = 100
d = a / b
if d > 0:
print(d)
elif d == 0:
raise Exception('The result is 0!')
else:
raise Exception('Oops!')