#include
#define max 10
void main()
{
srand(time(NULL));
int random = rand()%max;
for(int i=0;i<10;i++)
cout << random << endl;
random=rand()%max;
}