A + B - MarisaOJ: Marisa Online Judge

A + B

Time limit: 1000 ms
Memory limit: 256 MB
You are given 2 integers $A, B$. Print their sum! ### Input - A single line contains two integer $A,B$. ### Output - Print the sum of A and B. ### Constraints - $(1 \le A, B \le 1000)$. ### Example Input: ```1 1``` Output: ```2```