#include <stdio.h>
#include <stdlib.h>
#include <time.h>

int main()
{
    int i, x;
    
    srand(time(0));

    for(i=0; i<10; i++)
    {
        x = rand() % 6 + 1;
        printf("%d\n", x);

    }

    return 0;
}