You like the sound of rain only if the sound ranges from l to r units. Every cloud makes s unit of sound. Determine the minimum and the maximum number of clouds that can produce the sound in the provided range.
Input format
Output format
In T lines, print two space-separated integers that represent the minimum and the maximum number of the clouds that can produce the sound in the provided range.
Note: Print −1−1 if no answer is available.
Constraints
1≤T≤1051≤l≤r≤1091≤s≤109
In the first test of the sample the answer is 23 because 2⋅3=6 which is in [5,10] and 3⋅3=9 which is also in [5,10]. Also 4⋅3=12 which exceeds Parmis's interval and is considered noise.