#include <iostream> #include <cstdlib> #include <ctime> using namespace std; int main() { // your code goes here std::srand(std::time(nullptr)); for(int i=0;i<10;i++) cout << rand() << " "; return 0; }
Standard input is empty
1306594658 1744052171 861088372 638559472 1004864186 1359158851 512527485 1992771259 51452190 1053604189