#P153A. A + B
A + B
Description
You are given two integers A and B. Calculate their sum and output it without leading zeros.
Two lines of input data contain integers A and B (1 ≤ A, B ≤ 105).
Output A + B without leading zeros.
Input
Two lines of input data contain integers A and B (1 ≤ A, B ≤ 105).
Output
Output A + B without leading zeros.
12<br>3<br>
100<br>5<br>
15<br>
105<br>
Note
The code provided in the post about the round doesn't solve the task.