← Back to List

28808번: Таблица результатов ↗

Solutions

Python 3
104 B | 104 chars
n, m = map(int, input().split())
s = 0
for i in range(n):
    if "+" in input():
        s += 1
print(s)