#include<bits/stdc++.h> using namespace std; mt19937 rnd(time(0)); int main() { for(int i=1;i<=10;i++) cout<<rnd()<<" "; return 0; }