Source of A Hard Game

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include<cstdio>
#include<cstring>
using namespace std;
int main(){
int T, n, m;
scanf("%d", &T);
while (T--) {
scanf("%d%d", &n, &m);
if ((n & 1) == 1)
printf("Alice\n");
else
printf("Bob\n");
}
return 0;
}

返回