1
2
3
4
5
6
7
8
9
#include <iostream>

int main()
{
    char a[20];
    std::cin >> a;
    std::cout << "NIE";
    return 0;
}