Whats wrong with my code? After the second "input" the program stops...
convr = 0
x = input("Inform value: ")
y = input("Inform if is Dolar (D) or Euro (E): ")
convt = x * convr
if y == "D":
convr = 1/0.895
print (convt)
elif y == "E":
convr = 0.895
print (convt)
else:
print ("NOT ALLOWED!")