+ Time limit: 1 second
+ Memory limit: 256 megabytes
In this problem, you are given two integers, $a$ and $b$. You are asked to write a program that reads the values of $a$ and $b$ and prints $a + b$.
# Input
The input consists of a single line containing two integers $a$ and $b$, separated by a space.
$$1 \leq a, b \leq 100$$
# Output
Print the value of $a + b$ in a single line.
# Examples
## Sample Input 1
```
3 5
```
## Sample Output 1
```
8
```
## Sample Input 2
```
1 1
```
## Sample Output 2
```
2
```