ss = int(input())
answer = 0
while ss != 0:
next = int(input())
if next != 0 and ss < next:
answer += 1
ss = next
print(answer)
#чтобы завершить ввод числе нужно ввести 0
ss = int(input())
answer = 0
while ss != 0:
next = int(input())
if next != 0 and ss < next:
answer += 1
ss = next
print(answer)
#чтобы завершить ввод числе нужно ввести 0