#include "stdio.h"

int main()
{
   // rea de rectangulo
    
   int c; // contador
   
   for (c = 1; c <= 50; c++)
      printf("%i\n", c);
    
   // getch();
    
   return 0;
}


