#include <unistd.h>
#include <iostream>
#include <cstdlib>
using namespace std;
int main(void) {
 srand(time(0));
 cout << rand() << endl;

}