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