+ Time limit: 1 second
+ Memory limit: 256 megabytes
----------
In this problem, you are given two integers, such as $a$ and $b$. You are asked to write a program that receives the values of $a and $b, and prints $a+b$.
# **Input**
In the only line of input, two integers $a$ and $b$, separated by a space, are given.
$$1 \leq a, b \leq 100$$
# **Output**
In the only line of output, print the value of $a + b$.
# **Examples**
## **Sample Input 1**
```
3 5
```
## **Sample Output 1**
```
8
```
## **Sample Input 2**
```
1 1
```
## **Sample Output 2**
```
2
```
Post an answer to this question
You currently do not have access.