标签:
1 #include<cstdio> 2 3 int main() 4 { 5 int n; 6 while(scanf("%d",&n)!=EOF) 7 { 8 if(n%3) 9 printf("Kiki\n"); 10 else 11 printf("Cici\n"); 12 } 13 return 0; 14 }
HDU1847 博弈论 水题
原文地址:http://www.cnblogs.com/-maybe/p/4509592.html