问题1932--Superlong sums

1932: Superlong sums

[命题人 : ]
时间限制 : 2.000 sec  内存限制 : 64 MB

题目描述

The creators of a new programming language D++ have found out that whatever limit for SuperLongInt type they make, sometimes programmers need to operate even larger numbers. A limit of 1000 digits is so small... You have to find the sum of two numbers with maximal size of 1.000.000 digits.

输入

The first line of an input file contains a single number N (1<=N<=1000000) - the length of the integers (in order to make their lengths equal, some leading zeroes can be added). It is followed by these integers written in columns. That is, the next N lines contain two digits each, divided by a space. Each of the two given integers is not less than 1, and the length of their sum does not exceed N.

输出

Output file should contain exactly N digits in a single line representing the sum of these two integers.

样例输入 Copy

4
0 4
4 2
6 8
3 7

样例输出 Copy

4750

提示

Huge input,scanf is recommended.