#include #define rep(i,n) for(int i = 0; i < (n); i++) using namespace std; typedef long long ll; int main(){ cin.tie(0); ios::sync_with_stdio(0); int H,N; cin >> H >> N; vector h(N); rep(i,N-1) cin >> h[i]; sort(h.begin(), h.end()); int ans = h.end() - lower_bound(h.begin(), h.end(), H) + 1; cout << ans << (ans % 10 == 1 ? "st" : ans % 10 == 2 ? "nd" : ans % 10 == 3 ? "rd" : "th") << endl; }