The five functions are: input, division, mean, power, print. Write the input fun
ID: 3618870 • Letter: T
Question
The five functions are: input, division, mean, power, print.
Write the input function to allow the user to input twointegers.
Write the division function to provide both the quotient and theremainder, determined by dividing the first number by the secondnumber.
Write a stub for the mean function; your mean function shouldaccept two integer parameters, and return the integer 1; do notcompute the mean.
Write a stub for the power function; your power function shouldaccept two integer parameters, and return the integer 1; do notcompute the power.
Write the print function to print the input values, the quotient,the remainder, the mean, and the power. Provide descriptive textidentifying the six items in the printed output.