def bmi(h,w):
return __________
def waist_height(__________):
return wl/h
def needtolose(h,w,wl):
if __________:
return True
else:
__________
n=int(input())
count=0
k=0
for i in range(n):
h,w,wl=map(int,input().split())
if __________:
__________
__________
print(count)
print(k)