#include #define REP(i,a,b) for(int i=(a);i<(b);i++) #define RREP(i,a,b) for(int i=(a);i>=(b);i--) typedef long long ll; typedef long double ld; using namespace std; const int INF=1e9, MOD=1e9+7, around[]={0,1,1,-1,-1,0,-1,1,0,0}; const ld PI=abs(acos(-1)); int n,one=0,two=0; ll a; int main(){ cin >> n; REP(i,0,n){ cin >> a; if(a==1) one++; else if(a==2) two++; else{ cout << 'B' << endl; return 0; } } if(two>1) cout << 'B' << endl; else if(one) cout << (one%2?'A':'B') << endl; else cout << 'B' << endl; return 0; }