main( )
{
int i = 1 ;
while ( i++<= 100 )
{
        printf ("%d\n",i);
        
}
}