Coins

Asen and Boyan are playing the following game. They choose two different positive integers K and L, and start the game with a tower of N coins. Asen always plays first, Boyan – second, after that – Asen again, then Boyan, and so on. The boy in turn can take 1, K or L coins from the tower. The winner is the boy, who takes the last coin (or coins).

After a long, long playing, Asen realizes that there are cases in which he could win, no matter how Boyan plays. And in all other cases Boyan being careful can win, no matter how Asen plays. So, before the start of the game Asen is eager to know what game case they have. Write a program coins which help Asen to predict the game result for given K, L and N.



Input

The input describes m games. The first line of the standard input contains the integers K, L and m, 1 < K < L < 10, 3 < m < 50. The second line contains m integers N1, N2, …, Nm, 1 ≤ Ni ≤ 1000000, i = 1, 2, ..., m, representing the number of coins in each of the m towers.



Output

The standard output contains a string of length m composed of letters A and B. If Asen wins the i-th game (no matter how the opponent plays), the i-th letter of the string has to be A. When Boyan wins the i-th game (no matter how Asen plays), the i-th letter of the string has to be B.



Constraints

Time limit: 1 second
Memory limit: 64 megabytes



Examples


input
2 3 5
3 12 113 25714 88888
output
ABAAB


 Submit your code