Answers for "231a codeforces solution in python"

0

231a codeforces solution in python

n = int(input())
count = 0
for i in range(0, n):
    x = input()
    if x.count('1') >= 2:
        count += 1
print(count)
Posted by: Guest on October-05-2020

Code answers related to "231a codeforces solution in python"

Python Answers by Framework

Browse Popular Code Answers by Language