Hailstone HOTPO
The hailstone sequence is formed in the following way:
If is even, divide it by to get
if is odd, multiply it by and add to get
It is conjectured that for any positive integer number , the sequence will always end in the repeating cycle: . Suffice to say, when , we will say the sequence has ended.
Write a program to determine the largest value in the sequence for a given **n**.
Input
The first line contains the number of data sets that follow. Each data set should be processed identically and independently.
Each data set consists of a single line of input consisting of two space separated decimal integers. The first integer is the data set number. The second integer is , which is the starting value.
Output
For each data set print a single line consisting of the data set number, one space, and the largest value in the sequence starting from .