H,N = map(int,input().split()) L = [int(input()) for i in range(N-1)] L = sorted(L,reverse=True) if H < min(L) : if len(L) % 10 == 0 : ans = "{}th".format(N) elif len(L) % 10 == 1 : ans = "{}nd".format(N) elif len(L) % 10 == 2 : ans = "{}rd".format(N) else : ans = "{}th".format(N) else : for i in range(len(L)) : if H > L[i] : if len(L) % 10 == 0 : ans = "{}th".format(1+i) elif len(L) % 10 == 1 : ans = "{}nd".format(1+i) elif len(L) % 10 == 2 : ans = "{}rd".format(1+i) else : ans = "{}th".format(1+i) break print(ans)