In Psuedocode
Create a DivAndMod application that prompts the user for two integers and then displays the result of integer and modulus division in either order. The application output should look similar to:
Enter an integer: 14
Enter a second integer: 4
14 / 4 = 3
14 % 4 = 2
4 / 14 = 0
4 % 14 = 4