现在的位置: 首页 > 综合 > 正文

2463: [中山市选2009]谁能赢呢?

2018年01月13日 ⁄ 综合 ⁄ 共 144字 ⁄ 字号 评论关闭
</pre><pre name="code" class="cpp">#include<cstdio>
int n;
int main(){
	while(scanf("%d",&n)&&n){
		if(n&1)printf("Bob\n");
		else printf("Alice\n");
	}
	return 0;
}

抱歉!评论已关闭.