Create 1847.cpp

pull/45/head
Kirigaya Kazuto 2016-09-25 22:46:46 +08:00 committed by GitHub
parent 9e5f2e11ea
commit e7cc423eaa
1 changed files with 13 additions and 0 deletions

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;
}