SPEED - Circular Track

Two persons are running on a circular track either in the same direction or in the opposite direction, indefinitely. The speed of both of them is given to you. Speed will be positive in clockwise direction, and negative in anticlockwise direction. Print the number of distinct points, at which they will meet on the circle.

Input

First line contains T, number of test cases. Each test case contains two integers, S1 and S2 (not equal to zero) which are the speeds of the two persons. S1 and S2 will be distinct.

Edited: All the numbers fit in signed 32-bit integer.

Output

Print in a separate line, the number of distinct points at which they meet.

Example

Input
2
1 2
1 -1

Output
1
2

Added by:Nikunj Jain
Date:2011-07-21
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All

hide comments
2020-12-27 18:11:56
Good question!
2019-09-04 15:44:25
AC in one go 0.00 s
2019-04-02 15:38:01
only gcd and relative motion apply
2019-01-26 18:13:10
30th
2018-07-03 07:26:08
do these type of questions when you need confidence !
2017-08-22 19:43:30
AC in one go :)
2017-06-19 23:23:26
AC in one go....my 100th
2017-06-17 16:43:18
just observe....very nice problem....
2017-06-13 15:43:49
Those getting WA check that when both s1 and s2 is negative then they are in same direction
2017-02-24 04:18:01
AC in one go :))
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.