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