← Back to List

29683번: Рождественская лотерея ↗

Solutions

Python 3
92 B | 92 chars
n, a = map(int, input().split())

print(sum([i // a for i in [*map(int, input().split())]]))