Write a program that prompts the user for three numbers (integers), then displays:
The program should prompt for:
Enter the first number: Enter the second number: Enter the third number: The product of the first two numbers is product
The sum of all three numbers is sum
Input:
4
5
6
Output:
The product of the first two numbers is 20
The sum of all three numbers is 15