1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include<cstdio>
#include<cstring>
#include<cmath>
using namespace std;

char s[20];

long long sub(int P,int K)
{
	long long o=0;
	for(int i=P;i<=K;i++)o=o*10+s[i]-'0';
	return o;
}

bool isPrime(long long A)
{
	if(A<2)return false;
	int X=sqrt(A);
	for(int i=2;i<=X;i++)if(A%i==0)return false;
	return true;
}

int main()
{
	scanf("%s",&s);
	int n=strlen(s);
	for(int i=0;i<n-1;i++)
	{
		if(s[i+1]!='0'&&isPrime(sub(0,i))&&isPrime(sub(i+1,n-1)))
		{
			printf("TAK");
			return 0;
		}
	}
	printf("NIE");
}