4 8 6 5 3 2 8 9 2 5
4
nums = list(map(int, input().split())) avg = sum(nums) / len(nums) print(sum(1 for n in nums if n >= avg))