Write a program that prompts the user to input two numbers, a numerator and a divisor. Your program should then divide the numerator by the divisor, and display the quotient and remainder.
So far I have this....
numerator = int(input("Enter your numerator: "))
divisor = int(input("Enter your divisor: "))
print(numerator%divisor)
*How do you get the quotient and the remainder to display???