// Online C++ compiler to run C++ program online
#include <iostream>
#include <ctime>


using namespace std;
int main() {
    cout << "Any 1337COde problems will be solvet with random NuMbErs!!! \n";
    srand(time(0));
    int Z = rand() % (3000 - 2 + 1) + 2;
    cout << Z;

    return 0;
}