#C11057. Even Product Winner

    ID: 40331 Type: Default 1000ms 256MiB

Even Product Winner

Even Product Winner

You are given two integers A and B. The task is to determine the winner based on the product of these two numbers. Calculate the product:

\( P = A \times B \)

If P is even, then Bob wins; otherwise, Alice wins.

Constraints: \(1 \leq A, B \leq 200\)

inputFormat

The input consists of a single line containing two space-separated integers A and B.

outputFormat

Output a single line containing the name of the winner: either Bob if the product is even, or Alice if the product is odd.

## sample
2 4
Bob