Strange addition
Practice
3.6 (56 votes)
Ad Hoc
Easy
Math
Problem
72% Success 11168 Attempts 20 Points 2s Time Limit 256MB Memory 1024 KB Max Code

HackerMan has a message that he has coded in form of digits, which means that the message contains only numbers and nothing else. He is fearful that the enemy may get their hands on the secret message and may decode it. HackerMan already knows the message by heart and he can simply destroy it.

But he wants to keep it incase its needed in a worse situation. He wants to further encode the message in such a format which is not completely reversible. This way if enemies gets hold of the message they will not be completely able to decode the message.

Since the message consists only of number he decides to flip the numbers. The first digit becomes last and vice versa. For example, if there is \(3769\) in the code, it becomes \(9673\) now. All the leading zeros are omitted e.g. \(15900\) gives \(951\). So this way the encoding can not completely be deciphered and has some loss of information.

HackerMan is further thinking of complicating the process and he needs your help. He decides to add the two flipped numbers and print the result in the encoded (flipped) form. There is one problem in this method though. For example, \(134\) could be \(431\), \(4310\) or \(43100\) before reversing. Hence the method ensures that no zeros were lost, that is it can be assumed that the original number was \(431\).

Input

The input consists of T test cases. The first line of the input contains only positive integer T. Then follow the cases. Each case consists of exactly one line with two positive integers separated by space. These are the flipped numbers you are to add.

Output

For each case, print exactly one line containing only one integer - the flipped sum of two flipped numbers.

Constraints

  • The value of T will be less than \(1000\)
  • The value of digits will be less than \(500000\)

Please login to use the editor

You need to be logged in to access the code editor

Loading...

Please wait while we load the editor

Loading...
Results
Custom Input
Run your code to see the output
Submissions
Please login to view your submissions
Similar Problems
Points:20
19 votes
Tags:
Basic ProgrammingEasy
Points:20
58 votes
Tags:
ArraysEasyMath
Points:20
7 votes
Tags:
Basic ProgrammingBasics of ImplementationEasyHash MapsImplementationString Manipulation