Accept two integers as input and print their sum as output.
Input
Two lines, each containing one integer.
Output
A single line: the sum of the two integers.
Example
Input:
3
4
Output:
7
Write a complete program: read the input with input() and print the result with print().
Input
3
4
Output
7