Score : $100$ points
Takahashi and Aoki decided to jog.
Takahashi repeats the following: "walk at $B$ meters a second for $A$ seconds and take a rest for $C$ seconds."
Aoki repeats the following: "walk at $E$ meters a second for $D$ seconds and take a rest for $F$ seconds."
When $X$ seconds have passed since they simultaneously started to jog, which of Takahashi and Aoki goes ahead?
Input is given from Standard Input in the following format:
$A$ $B$ $C$ $D$ $E$ $F$ $X$
When $X$ seconds have passed since they simultaneously started to jog, if Takahashi goes ahead of Aoki, print Takahashi
; if Aoki goes ahead of Takahashi, print Aoki
; if they have advanced the same distance, print Draw
.
4 3 3 6 2 5 10
Takahashi
During the first $10$ seconds after they started to jog, they move as follows.
Since Takahashi goes ahead, Takahashi
should be printed.
3 1 4 1 5 9 2
Aoki
1 1 1 1 1 1 1
Draw