#C7961. Taco Game Outcome
Taco Game Outcome
Taco Game Outcome
You are given a game in which each test case consists of a single integer m representing the number of steps to move. However, regardless of the value of m, the game always results in a draw.
Your task is to process t test cases and for each one print the outcome. Since the outcome is always a draw, your answer for each case should be "Draw".
Note: The integer m does not affect the result.
Example:
Input:
3
1
2
3
Output:
Draw
Draw
Draw
inputFormat
The input is read from stdin and has the following format:
- An integer t on the first line representing the number of test cases.
- t subsequent lines, each containing a single integer m (the number of steps; though its value does not affect the outcome).
outputFormat
For each test case, output a single line with the string Draw. The outputs should be written to stdout.
## sample3
1
2
3
Draw
Draw
Draw
</p>