Chef and Remissness - CodeChef Solution

Hello coders, today we are going to solve Chef and Remissness CodeChef Solution whose Problem code is REMISS. Chef is now a corporate person. He has t

Hello coders, today we are going to solve Chef and Remissness CodeChef Solution whose Problem code is REMISS.

Chef and Remissness - CodeChef Solution

Problem

Chef is now a corporate person. He has to attend office regularly. But chef does not want to go to office, rather he wants to stay home and discover different recipes and cook them.

In the office where chef works, has two guards who count how many times a person enters into the office building. Though the duty of a guard is 24 hour in a day, but sometimes they fall asleep during their duty and could not track the entry of a person in the office building. But one better thing is that they never fall asleep at the same time. At least one of them remains awake and counts who enters into the office.

Now boss of Chef wants to calculate how many times Chef has entered into the building. He asked to the guard and they give him two integers A and B, count of first guard and second guard respectively.

Help the boss to count the minimum and maximum number of times Chef could have entered into the office building.

Input

The first line of the input contains an integer T denoting the number of test cases. The description of the T test cases follows.

Each test case consists of a line containing two space separated integers A and B.

Output 

For each test case, output a single line containing two space separated integers, the minimum and maximum number of times Chef could have entered into the office building.

Constraints

  • 1 <= T <= 100
  • 0 <= A, B <= 1000000

Example

Input:

1
19 17

Output:

19 36

Solution - Chef and Remissness - CodeChef Solution

Python 3 

#Solution Provided by Sloth Coders 
T = int(input())
while T > 0:
    m, n = map(int, input().split())
    total = m + n 
    print(max(m, n), total)
    T = T - 1

Disclaimer: The above Problem (Chef and Remissness) is generated by CodeChef but the Solution is provided by Sloth Coders.

Happy Coding !!

A Sloth Who loves to Code

Also Read:

Sloth Coders is a Learning Platform for Coders, Programmers and Developers to learn from the basics to advance of Coding of different langauges(python, Java, Javascript and many more).

Post a Comment