write a go solution for Description: During the summer vacation after Zhongkao examination, Tom and Daniel are planning to go traveling. There are n cities in their country, numbered from 1 to n. And the traffic system in the country is very special. For each city i (1<=i<=n), there is - a road between city i and 2i, if 2i<=n; - a road between city i and 2i+1, if 2i+1<=n. Making a travel plan, Daniel chooses some integer value between 1 and m for each city, for the i-th city we denote it by a_i. Let s_i,j be the maximum value of cities in the simple^dagger path between cities i and j. The score of the travel plan is sum_i=1^nsum_j=i^ns_i,j. Tom wants to know the sum of scores of all possible travel plans. Daniel asks you to help him find it. You just need to tell him the answer modulo 998,244,353. ^dagger A simple path between cities x and y is a path between them that passes through each city at most once. Input Format: The first line of input contains a single integer t (1<=t<=200) — the number of test cases. The description of test cases follows. The only line of each test case contains two integers n and m (1<=n<=10^18, 1<=m<=10^5) — the number of the cities and the maximum value of a city. It is guaranteed that the sum of m over all test cases does not exceed 10^5. Output Format: For each test case output one integer — the sum of scores of all possible travel plans, modulo 998,244,353. Note: In the first test case, there is only one possible travel plan: Path 1arrow1: s_1,1=a_1=1. Path 1arrow2: s_1,2=max(1,1)=1. Path 1arrow3: s_1,3=max(1,1)=1. Path 2arrow2: s_2,2=a_2=1. Path 2arrow1arrow3: s_2,3=max(1,1,1)=1. Path 3arrow3: s_3,3=a_3=1. The score is 1+1+1+1+1+1=6. In the second test case, there are four possible travel plans: Score of plan 1: 1+1+1=3. Score of plan 2: 1+2+2=5. Score of plan 3: 2+2+1=5. Score of plan 4: 2+2+2=6. Therefore, the sum of score is 3+5+5+6=19.. Output only the code with no comments, explanation, or additional text.