Cold-puter Science

This commit is contained in:
2023-06-23 22:33:41 +02:00
parent 1e6af97d37
commit 1ff694ea4a

3
cold-puterscience.py Normal file
View File

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