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
#include <bits/stdc++.h>

using namespace std;

bool isPrime(long long x) {
    if (x < 2) {
        return false;
    }
    for (long long t = 2; t * t <= x; t++) {
        if (x % t == 0) {
            return false;
        }
    }
    return true;
}

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(0);

    string s;
    cin >> s;

    for (int i = 1; i < s.length(); i++) {
        stringstream ss;
        long long a, b;
        ss << s.substr(0, i) << endl;
        ss >> a;
        ss << s.substr(i, s.length()) << endl;
        ss >> b;
        string t;
        ss << a << b << endl;
        ss >> t;
        if (s == t) {
            if (isPrime(a) && isPrime(b)) {
                cout << "TAK\n";
                return 0;
            }
        }
    }
    cout << "NIE\n";

    return 0;
}