5 15 30 55 45
3
nums = list(map(int, input().split())) count = 0 for n in nums: if 10 <= n <= 50: count += 1 print(count)