Write a program that reads two integers and displays the result of integer division and the remainder (modulus).
The program should prompt for:
Enter the first number: Enter the second number: The quotient is quotient
The remainder is remainder
Input:
17
5
Output:
The quotient is 3
The remainder is 2