竞赛
考级
#include<bits/stdc++.h> using namespace std; int main(){ int x , y; cin >> x >> y; if(x < y) cout << "B"; else if(x > y) cout << "P"; else cout << "M"; return 0; }
提交答案之后,这里将显示提交结果~