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
#include <iostream>
using namespace std;

int main() {
	double f[51];
	f[0] = 0.0;
	f[1] = 1.0;
	for(int i=2;i<51;i++)	{
		f[i]=f[i-1]+f[i-2];
	}
	int t;
	cin >> t;
	while(t--)	{
		double n;
		cin >> n;
		bool dasie = false;
		for(int i=1;i<52;i++)
			for(int j=1;j<52;j++)
				if(f[i]*f[j]==n&&i!=j)
					dasie=true;
		if(dasie)
			cout << "TAK" << endl;
		else
			cout << "NIE" << endl;
	}
	return 0;
}