Create a program, within a main function that you call, that…

Create a program, within a main function that you call, that prompts the user for two integers: the numerator and the denominator. Display the result of dividing the numerator by the denominator using both floor division and regular division. Display results that mimic the example below. Here is an example run: Enter the numerator: 7 Enter the denominator: 2 7 / 2 is 3.5 7 // 2 is 3 Anything divided by 0 is undefined. Therefore, if zero is entered as the second number (the denominator), print ‘Invalid input.’ as a response.