ADDREV - Adding Reversed Numbers


The Antique Comedians of Malidinesia prefer comedies to tragedies. Unfortunately, most of the ancient plays are tragedies. Therefore the dramatic advisor of ACM has decided to transfigure some tragedies into comedies. Obviously, this work is very hard because the basic sense of the play must be kept intact, although all the things change to their opposites. For example the numbers: if any number appears in the tragedy, it must be converted to its reversed form before being accepted into the comedy play.

Reversed number is a number written in Arabic numerals but the order of digits is reversed. The first digit becomes last and vice versa. For example, if the main hero had 1245 strawberries in the tragedy, he has 5421 of them now. Note that all the leading zeros are omitted. That means if the number ends with a zero, the zero is lost by reversing (e.g. 1200 gives 21). Also note that the reversed number never has any trailing zeros.

ACM needs to calculate with reversed numbers. Your task is to add two reversed numbers and output their reversed sum. Of course, the result is not unique because any particular number is a reversed form of several numbers (e.g. 21 could be 12, 120 or 1200 before reversing). Thus we must assume that no zeros were lost by reversing (e.g. assume that the original number was 12).

Input

The input consists of N cases (equal to about 10000). The first line of the input contains only positive integer N. Then follow the cases. Each case consists of exactly one line with two positive integers separated by space. These are the reversed numbers you are to add.

Output

For each case, print exactly one line containing only one integer - the reversed sum of two reversed numbers. Omit any leading zeros in the output.

Example

Sample input: 
3
24 1
4358 754
305 794

Sample output:
34
1998
1

hide comments
bhavyaa_08: 2019-07-16 23:17:42

whats the range of input

developer81: 2019-06-25 23:18:04

I am new to python,please help me out! i solved this problem but i cant take input in the given format....please explain me how to take that input in that particular format in python

wittystranger: 2019-06-24 08:45:02

First spoj problem AC first with first go and in 0.00 seconds

phanindra_28: 2019-06-06 16:31:33

python.....:)
AC in one go

ohharsen: 2019-05-22 21:11:10

It was so simple and I had to grab my left ear with the right foot IDK why

mgroovyank: 2019-04-11 09:28:54

AC in 5th attempt. Don forget "\n" newline

maju91: 2019-03-28 17:22:15

it was easier than i thought :DD no strings ofc :P

Last edit: 2019-03-28 17:22:32
upendrakdev93: 2019-02-21 06:42:56

@ripu502, in problem input is provided as space separated. Because of that you are seeing run time error. Use split when you are considering the input.

Last edit: 2019-02-21 06:43:50
vikraman_2: 2019-02-20 13:07:09

what if input begins with 0 like wise 002?

softcodeln: 2019-02-16 23:30:36

good problem...done in python3 and cpp


Added by:adrian
Date:2004-06-06
Time limit:5s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All
Resource:ACM Central European Programming Contest, Prague 1998