def main(): alphabet_choice() def alphabet_choice(): i = int(input()) x = 'IGNITION' print(x[i-1]) if __name__ == '__main__': main()