Analyze the code. Match inputs with outputs.
x = int(input("Enter the first number: "))
y = int(input("Enter the second number: "))
d = x / y
assert d > 5, "Your number is less than 5 or equal to 5!"
assert d < 14, "Your number is more than 14 or equal to 14!"
print("Your number is", d)