#include #include using namespace std; constexpr string s = "IGNITION"; int main(void) { int i; cin >> i; cout << s[i - 1] << "\n"; return 0; }