#include <iostream> #include <cstdlib> #include <ctime>
int main() { srand(time(0)); std::cout << rand() << '\n'; return 0; }