#include <stdio.h>
int main()
{
int i = 1, k = 0;
while (1==1)
scanf("%d", &i);
if (i !=0) k++;
else break;
}
printf("%d", k);
return 0;