#include int main(){ std::cin.tie(nullptr); std::ios::sync_with_stdio(false); int i; std::cin >> i; std::cout << "IGNITION"[i - 1] << std::endl; }