#include <stdio.h>
#include <conio.h>


int main(void)
{
   int i;
   char s[80];

   for (i = 0; i < 50; i++)
       printf("%d", i);
}