n = int(input()) k = int(input()) r = 1 print(r) for _ in range(n-1): s = int(input()) if s > k: r += 1 print(r)