Problem Description
Given four integers , , , . You need to output:
- in the first line - the value of ,
- in the second line - the sum ,
- in the third line - the sum ,
- in the fourth line - the sum .
Input Format
The input contains four integers , , , , separated by spaces. Each number does not exceed in absolute value.
Output Format
Output the corresponding answers on each line.
Examples
Example 1
Input
1 2 3 4
Output
1 3 6 10
Example 2
Input
2 0 2 5
Output
2 2 4 9