Problem9105--ABC334 —— A - Christmas Present

9105: ABC334 —— A - Christmas Present

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 512 MiB

Description

Takahashi, a young baseball enthusiast, has been a very good boy this year, so Santa has decided to give him a bat or a glove, whichever is more expensive.
If a bat costs B yen and a glove costs G yen (B≠G), which one will Santa give to Takahashi?

Input

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

Output

If Santa gives Takahashi a bat, print Bat; if Santa gives him a glove, print Glove.

Constraints

B and G are different integers between 1 and 10000, inclusive.

Sample 1 Input

300 100

Sample 1 Output

Bat
The bat is more expensive than the glove, so Santa will give Takahashi the bat.

Sample 2 Input

334 343

Sample 2 Output

Glove
The glove is more expensive than the bat, so Santa will give Takahashi the glove.

HINT

相同题目:ABC334

Source/Category