#include "stdio.h"

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