0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 20:05:26 +00:00
Baoshuo Ren 2021-08-06 18:35:31 +08:00 committed by Baoshuo Ren
parent 7f1abb0726
commit 47073aef3b
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

22
AcWing/763/763.cpp Normal file
View File

@ -0,0 +1,22 @@
#include <bits/stdc++.h>
using namespace std;
int main() {
int t;
cin >> t;
while (t--) {
string a, b;
cin >> a >> b;
int as = a.size();
int bs = b.size();
if (as - bs == 3 || as - bs == -1 || as - bs == -2) {
cout << "Player1" << endl;
} else if (a == b) {
cout << "Tie" << endl;
} else {
cout << "Player2" << endl;
}
}
return 0;
}