1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <bits/stdc++.h>

using namespace std;
int k;
int e, d, r;
int main()
{
    srand(time(NULL));
    scanf("%d %d", &d, &r);
for(int i=0;i<d;i++)
{
    scanf("%d %d %d", &k, &k, &k);
}
e=rand()%2;
if(e==0)
{
   printf("NIE");
}
else
{
    printf("TAK");
}
}