FUCT_IF_DIVIDE - Divide

no tags 

Enter two numbers m and n then calculate the value /n, where m is the numerator and n is the denominator.

Input

The first line of the input consist of a single integer number t which determines the number of tests.

In each of next t lines there are two number m and n that are separated by a space character.

Constraints

  • 0 < t ≤ 1 000

Output

For each test case print out the result of division. Do not print trailing zeros, or the decimal point if there are no decimal places printed. See examples for clarification.

Separate your answers with a new line character.

Example

Input:
7
5 2
-15 -5
8 4
50 0
7 3
-6 2
18 -3

Output:
2.5
3
2
denominator cannot be zero
2.333333
-3
-6

hide comments
karan_360: 2020-05-21 17:54:02

AC in one go simple =)


Added by:khanhvh
Date:2018-06-18
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All