Files
kattis/cold-puterscience.py
2023-06-23 22:33:41 +02:00

4 lines
107 B
Python

_ = input()
temperatures = map(int, input().split())
print(sum([1 if t < 0 else 0 for t in temperatures]))