// This program output a random integer between
// 1 and 10

#include<iostream>
#include<cstdlib>    // Import the rand() function

using namespace std;


int main()
{
 srand(time(0)); // Initialize rand to be determined by time

 // Compute and report random number between 1 and 10
 cout << "Your random number is " << rand()%10+1 << endl;

 return 0;
}