Just a joke
题号:NC224150
时间限制:C/C++/Rust/Pascal 1秒,其他语言2秒
空间限制:C/C++/Rust/Pascal 256 M,其他语言512 M
64bit IO Format: %lld

题目描述

Alice and Bob are playing a game.

At the beginning, there is an undirected graph with nodes.

Alice and Bob take turns to operate, Alice will play first. The player who can't operate will lose the game.

Each turn, the player should do one of the following operations.

1. Select an edge of and delete it from .

2. Select a connected component of which doesn't have any loop, then delete it from .

Alice and Bob are smart enough, you need to find who will win this game.

A connected component of an undirected graph is a set of nodes such that each pair of nodes is connected by a path, and other nodes in the graph are not connected to the nodes in this set.

For example, for graph with nodes and edge set is a connected component but are not. 



输入描述:

The first line has two integers .

Then there are lines, each line has two integers describe an edge in .





It's guaranteed that graph doesn't have self loop and multiple edge.

输出描述:

Output the name of the player who will win the game.
示例1

输入

复制
3 1
1 2

输出

复制
Bob