神奇套路某题,AC无敌(doge巴巴)

魈凯KBS  •  4个月前


include <bits/stdc++.h>

using namespace std; int x,y; int main() {

cin>>x>>y;
if(x!=y)
{
	cout<<"A";
}
else
{
	cout<<"B";
}
return 0;

}


Comments: