mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
14 lines
204 B
C++
14 lines
204 B
C++
|
#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;
|
||
|
}
|