#30367: __答案


tc1090660@tcjhs.tyc.edu.tw (82112張瑋宸)

學校 : 不指定學校
編號 : 189153
來源 : [163.30.95.84]
最後登入時間 :
2022-05-16 16:31:13

bonus = 0
for _ in range(5):
    a,b,c=sorted(map(int,input().split()))
    if a + b> c:
        bonus += 1
print(bonus)