#include <stdlib.h>
#include <stdio.h>
int main(void)
{int i;
 srandom(101);
 for(i=0; i<10; i++) printf("%d\n", random());
}
