#include "stdio.h"

int main()
{
	// Area del Rectangulo
    
    	int c; // contador
    
    	for (c = 1; c <= 50; c++)
    	printf ("%i\n", c);
		
	return 0;
}