#include #include using namespace std; int main() { int n; cin >> n; string s = "IGNITION"; cout << s.at(n - 1) << endl; }