#C7782. Find the Card Picker

    ID: 51691 Type: Default 1000ms 256MiB

Find the Card Picker

Find the Card Picker

You are given two integers N and K. Although N represents the total number of cards, the answer is solely determined using K as follows:

Let \( r = K \mod 3 \). Then:

  • If \( r = 1 \), the output is Alice.
  • If \( r = 2 \), the output is Bob.
  • If \( r = 0 \), the output is Charlie.

Read the input from standard input and write the result to standard output.

inputFormat

The input consists of a single line with two integers N and K separated by space. Here, N is the total number of cards (unused in computation) and K is the card number to determine the picker for.

outputFormat

Output a single line containing the name of the player who picks card number K (either "Alice", "Bob", or "Charlie").

## sample
5 2
Bob