bzoj2463

......

#include <stdio.h>
#include <algorithm>
#include <cstring>
#include <cmath>
#include <queue>
#include <vector>
using namespace std;
int n;
int main()
{
while(scanf("%d",&n)&&n)
if(n&1)printf("Bob ");
else printf("Alice ");
return 0;
}

原文地址:https://www.cnblogs.com/new-hand/p/7733769.html