#include <iostream>
using namespace std;
int N;
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin >> N;
if (N == 1)
{
cout << "B\n";
}
else
{
cout << "A\n";
}
return 0;
}
게임 이론 관련 문제였다.
Baekjoon_Link 👈 Click here