NSTEPS - Number Steps

Starting from point (0,0) on a plane, we have written all non-negative integers 0, 1, 2, ... as shown in the figure. For example, 1, 2, and 3 has been written at points (1,1), (2,0), and (3, 1) respectively and this pattern has continued.

 

Illustration

 

You are to write a program that reads the coordinates of a point (x, y), and writes the number (if any) that has been written at that point. (x, y) coordinates in the input are in the range 0...10000.

Input

The first line of the input is N, the number of test cases for this problem. In each of the N following lines, there is x, and y representing the coordinates (x, y) of a point.

Output

For each point in the input, write the number written at that point or write No Number if there is none.

Example

Input:
3
4 2
6 6
3 4

Output:
6
12
No Number

Added by:Camilo Andrés Varela León
Date:2006-11-25
Time limit:1.159s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ERL JS-RHINO NODEJS PERL6 VB.NET
Resource:Asia - Tehran 2000

hide comments
2015-09-26 17:33:52 Sarvi
got WA, didn't put a "\n" after "No Number" :P
2015-08-28 18:53:39 KD
AC in 2nd attempt ,got WA because i use NO instead of No
2015-08-23 06:33:11
if the range is greater than 10000....thn what shud i print.....
2015-08-20 20:53:49
my code is good at pc
but WA in spoj
2015-07-22 11:46:34 Avinash Kumar
one line solution after taking inputs :)
2015-07-07 13:10:01
too much WA only for NO NUMBER instead of No Number ..... crazzy Me..
anyways AC in just 17 lines in c
2015-07-01 14:58:11 vedaytas
very simple question
2015-06-29 20:55:40
just an if else case and bang........:)
2015-06-25 09:01:49 Ud
If the memory limit exceeds than also it will show WA or will give the message memory limit exceeded?
Please help.
2015-06-15 17:35:15
Got WA cause of small n in Number :(
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.