Preparando MOJI
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.
12
3
15
100
5
105
The code provided in the post about the round doesn't solve the task.