#!/bin/python import sys n = int(raw_input().strip()) height = map(int,raw_input().strip().split(' ')) cm = height[0]; c = 0; for h in range(0,height.len()): if height[h] >= cm: c = c + 1; print c;