/*
number_count.c

program to count numbers entered.
(Type CTRL-D to terminate input.)
*/

#include <stdio.h>

main()
{
float f ;
int count ;

count = 0 ;
while ( scanf("%f" , &f ) == 1 )
    count ++ ;

printf( "%d numbers\n" , count ) ;
}   
