#include <iostream>
using namespace std;

int main()
{
   int i;

   for (i = 0; i < 10; i++)
   {
      cout << (rand()%100)+1 << endl;
   }

   return 0;
}