Droughts are usually classified as "abnormally dry", "moderate drought", "severe drought", "extreme drought", and "exceptional drought". The current drought is so "exceptional" across most of California that people have discussed adding one or more steps to the scale. But that would only delay the problem: any system of discrete labels eventually fails to scale. As computer scientists, we know the answer is a naming system to which you can simply keep adding syllables. So how about "mega drought", "mega mega drought", "mega mega mega drought", and so on? It extends arbitrarily. In this problem you write a program that decides how many "mega" prefixes to add.
You are given two numbers: the amount of rain that was expected and the amount of rain that actually fell. Let $E$ be the expected amount and $A$ the actual amount.
The first line contains the number $K$ of data sets. Then $K$ data sets follow, one per line.
Each data set contains two integers $E$ and $A$ with $0 \le E, A \le 1{,}000{,}000$ and $A > 0$: the expected and the actual amount of rain, in that order.
For each data set, first output a line "Data Set x:", where $x$ is the data set's number (starting from 1).
On the following line, output the string describing the drought ("no drought", "drought", "mega drought", "mega mega drought", and so on).
Print a blank line between consecutive data sets.