1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <iostream>
#include <algorithm>
using namespace std;

int main()
{
  int a;
  cin>>a;
  string tab[a];
  for(int i = 0; i<a; i++)
    cin>>tab[i];

  sort(tab, tab+a);
  string tab2[] = {"1A", "2A", "3A", "4A", "5A", "5A", "1B", "2B", "3B", "4B", "5B", "5B", "1C", "2C", "3C", "4C", "5C", "5C"};
  sort(tab2, tab2+18);

  bool sprawdz = includes(tab, tab+a, tab2, tab2+18);
  if(sprawdz)
    cout<<"TAK";
  else
    cout<<"NIE";
  return 0;
}