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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>

using namespace std;

bool czypierwsza(long long x)
{
    if(x==1) return false;
    if(x==2) return true;
    for(int i=2; i<=sqrt(x); i++)
    {
        if(x%i==0) return false;
    }
    return true;
}

int main()
{
    string x;
    cin >> x;
    if(x[x.size()-1]=='4' || x[x.size()-1]=='6' || x[x.size()-1]=='8')
    {
        cout << "NIE";
        return 0;
    }
    long long liczba=0;
    for(int i=1; i<x.size(); i++)
    {
        long long a, b;
        a=0;
        b=0;
        bool cz=true;
        for(int j=0; j<i; j++)
        {
            a=10*a+(x[j]-'0');
        }
        for(int j=i; j<x.size(); j++)
        {
            if(j==i && x[j]=='0') cz=false;
            b=10*b+(x[j]-'0');
        }
        if(czypierwsza(a) && czypierwsza(b) && cz)
        {
            cout << "TAK";
            return 0;
        }
    }
    cout << "NIE";
    return 0;
}