← Back to List
29986번: Amusement Park Adventure ↗
Solutions
Python 3
96 B | 96 chars
n, h = map(int, input().split()) print(sum([int(h >= i) for i in [*map(int, input().split())]]))