100540: [AtCoder]ABC054 A - One Card Poker

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:1 Solved:0

Description

Score : $100$ points

Problem Statement

Alice and Bob are playing One Card Poker.
One Card Poker is a two-player game using playing cards.

Each card in this game shows an integer between 1 and 13, inclusive.
The strength of a card is determined by the number written on it, as follows:

Weak 2 $<$ 3 $<$ 4 $<$ 5 $<$ 6 $<$ 7 $<$ 8 $<$ 9 $<$ 10 $<$ 11 $<$ 12 $<$ 13 $<$ 1 Strong

One Card Poker is played as follows:

  1. Each player picks one card from the deck. The chosen card becomes the player's hand.
  2. The players reveal their hands to each other. The player with the stronger card wins the game.
    If their cards are equally strong, the game is drawn.

You are watching Alice and Bob playing the game, and can see their hands.
The number written on Alice's card is $A$, and the number written on Bob's card is $B$.
Write a program to determine the outcome of the game.

Constraints

  • $1≦A≦13$
  • $1≦B≦13$
  • $A$ and $B$ are integers.

Input

The input is given from Standard Input in the following format:

$A$ $B$

Output

Print Alice if Alice will win. Print Bob if Bob will win. Print Draw if the game will be drawn.


Sample Input 1

8 6

Sample Output 1

Alice

8 is written on Alice's card, and 6 is written on Bob's card. Alice has the stronger card, and thus the output should be Alice.


Sample Input 2

1 1

Sample Output 2

Draw

Since their cards have the same number, the game will be drawn.


Sample Input 3

13 1

Sample Output 3

Bob

Input

题意翻译

珂朵莉和八尾勇在玩牌。她们指定了一个奇怪的规则。 每人抽一张牌。并且(这张牌的值+11)%13就是她获得的分数。 输入两个数,分别表示珂朵莉摸的牌的值和八尾勇摸的牌的值。 - 如果珂朵莉的分数大,输出`Alice`。 - 如果两个人分数一样大,输出`Draw`。 - 如果八尾勇的得分大,输出`Bob`。

加入题单

算法标签: