问题

### Instructions: You are an expert Python programmer. You will be given a question (problem specification) and will generate a correct Python program that matches the specification and passes all tests. You will NOT return anything except for the program.
### Question:
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\neq 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 1000, inclusive.

Sample Input 1

300 100

Sample Output 1

Bat

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

Sample Input 2

334 343

Sample Output 2

Glove

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

### Format: Read the inputs from stdin solve the problem and write the answer to stdout (do not directly test on the sample inputs). Enclose your code within delimiters as follows.
```python
# YOUR CODE HERE
```

### Answer: (use the provided format with backticks)

答案

模型 模型答案 正确答案
金声玉亮2.0 ```python
# YOUR CODE HERE
import sys
input = sys.stdin.read
data = input().split()

B = int(data[0])
G = int(data[1])

if B > G:
print("Bat")
else:
print("Glove")
```
[{"input": "300 100\n", "output": "Bat\n", "testtype": "stdin"}, {"input": "334 343\n", "output": "Glove\n", "testtype": "stdin"}]
deepseek-r1

```python
# Read the input values and split them into integers B and G
B, G = map(int, input().split())

# Compare the two values and print the appropriate result
if B > G:
print("Bat")
else:
print("Glove")
```
[{"input": "300 100\n", "output": "Bat\n", "testtype": "stdin"}, {"input": "334 343\n", "output": "Glove\n", "testtype": "stdin"}]
gpto1 ```python
# YOUR CODE HERE
B, G = map(int, input().split())
if B > G:
print("Bat")
else:
print("Glove")
```
[{"input": "300 100\n", "output": "Bat\n", "testtype": "stdin"}, {"input": "334 343\n", "output": "Glove\n", "testtype": "stdin"}]
gpt-4o-2024-08-06 ```python
# YOUR CODE HERE
def main():
import sys
input = sys.stdin.read
data = input().strip()
B, G = map(int, data.split())

if B > G:
print("Bat")
else:
print("Glove")

if __name__ == "__main__":
main()
```
[{"input": "300 100\n", "output": "Bat\n", "testtype": "stdin"}, {"input": "334 343\n", "output": "Glove\n", "testtype": "stdin"}]
DeepSeek-Coder-V2-Lite-Instruct ```python
# YOUR CODE HERE
B, G = map(int, input().split())
if B > G:
print("Bat")
else:
print("Glove")
```
[{"input": "300 100\n", "output": "Bat\n", "testtype": "stdin"}, {"input": "334 343\n", "output": "Glove\n", "testtype": "stdin"}]
Meta-Llama-3.1-405B-Instruct-Turbo ```python
B, G = map(int, input().split())

if B > G:
print("Bat")
else:
print("Glove")
```
[{"input": "300 100\n", "output": "Bat\n", "testtype": "stdin"}, {"input": "334 343\n", "output": "Glove\n", "testtype": "stdin"}]
Meta-Llama-3.1-70B-Instruct-Turbo ```python
# Read the input from stdin
B, G = map(int, input().split())

# Determine which one is more expensive
if B > G:
print("Bat")
else:
print("Glove")
```
[{"input": "300 100\n", "output": "Bat\n", "testtype": "stdin"}, {"input": "334 343\n", "output": "Glove\n", "testtype": "stdin"}]
Qwen2-72B-Instruct ```python
B, G = map(int, input().split())
if B > G:
print("Bat")
else:
print("Glove")
```
```
[{"input": "300 100\n", "output": "Bat\n", "testtype": "stdin"}, {"input": "334 343\n", "output": "Glove\n", "testtype": "stdin"}]
baichuan4 ```python
# YOUR CODE HERE

# Read the input values for B and G
B, G = map(int, input().split())

# Determine which item is more expensive and print the result
if B > G:
print('Bat')
else:
print('Glove')
```
[{"input": "300 100\n", "output": "Bat\n", "testtype": "stdin"}, {"input": "334 343\n", "output": "Glove\n", "testtype": "stdin"}]
doubao ```python
B, G = map(int, input().split())
if B > G:
print("Bat")
else:
print("Glove")
```
[{"input": "300 100\n", "output": "Bat\n", "testtype": "stdin"}, {"input": "334 343\n", "output": "Glove\n", "testtype": "stdin"}]
gpto1 ```python
# YOUR CODE HERE
B, G = map(int, input().split())
if B > G:
print("Bat")
else:
print("Glove")
```
[{"input": "300 100\n", "output": "Bat\n", "testtype": "stdin"}, {"input": "334 343\n", "output": "Glove\n", "testtype": "stdin"}]
kimi ```python
# YOUR CODE HERE
(B, G) = map(int, input().split())
if B > G:
print('Bat')
else:
print('Glove')
```
[{"input": "300 100\n", "output": "Bat\n", "testtype": "stdin"}, {"input": "334 343\n", "output": "Glove\n", "testtype": "stdin"}]
minimax ```python
# YOUR CODE HERE
B, G = map(int, input().split())
if B > G:
print("Bat")
else:
print("Glove")
```
[{"input": "300 100\n", "output": "Bat\n", "testtype": "stdin"}, {"input": "334 343\n", "output": "Glove\n", "testtype": "stdin"}]
wenxinyiyan ```python
# Read the input values for B and G
B, G = map(int, input().split())

# Check which item is more expensive and print the corresponding output
if B > G:
print("Bat")
else:
print("Glove")
```
[{"input": "300 100\n", "output": "Bat\n", "testtype": "stdin"}, {"input": "334 343\n", "output": "Glove\n", "testtype": "stdin"}]
zhipu ```python
# YOUR CODE HERE
def main():
import sys
input = sys.stdin.read
data = input().split()
B = int(data[0])
G = int(data[1])

if B > G:
print("Bat")
else:
print("Glove")

if __name__ == "__main__":
main()
```
[{"input": "300 100\n", "output": "Bat\n", "testtype": "stdin"}, {"input": "334 343\n", "output": "Glove\n", "testtype": "stdin"}]
deepseek-v3 ```python
# YOUR CODE HERE
B, G = map(int, input().split())
if B > G:
print("Bat")
else:
print("Glove")
```
[{"input": "300 100\n", "output": "Bat\n", "testtype": "stdin"}, {"input": "334 343\n", "output": "Glove\n", "testtype": "stdin"}]