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
%2C(2%2C3)%2C(1%2C3)%5C%7D.%20%20%5C%7B1%2C2%2C3%5C%7D)
is a connected component but

are not.