#include "stdio.h"

int main ()
{
   // area rectangulo
   
   int c; // contador

   for (c = 1; c <= 50; c++)
   printf ("%i\n", c);
 
 // getch ();
 
	return 0;
}
