Create 1847.cpp

This commit is contained in:
Kirigaya Kazuto 2016-09-25 22:46:46 +08:00 committed by GitHub
parent 9e5f2e11ea
commit e7cc423eaa

13
HDOJ/1847.cpp Normal file
View File

@ -0,0 +1,13 @@
#include <cstdio>
#include <cstdlib>
#include <cstring>
using namespace std;
int main()
{
int n;
while(scanf("%d",&n)==1)
if(n%3) printf("Kiki\n");
else printf("Cici\n");
return 0;
}