Write a program that prompts the user for three numbers (integers), then displays:

  1. The product of the first two numbers
  2. The sum of all three numbers

Input

The program should prompt for:

  1. Enter the first number:
  2. Enter the second number:
  3. Enter the third number:

Output

The product of the first two numbers is product
The sum of all three numbers is sum

Example

Input:

4
5
6

Output:

The product of the first two numbers is 20
The sum of all three numbers is 15