line_count = 0
while True:
try:
line = input()
if not line:
break # 빈 줄일 경우 반복문 종료
line_count += 1
except EOFError:
break # 입력이 끝나면 반복문 종료
print(line_count)
line_count = 0
while True:
try:
line = input()
if not line:
break # 빈 줄일 경우 반복문 종료
line_count += 1
except EOFError:
break # 입력이 끝나면 반복문 종료
print(line_count)