#include <bits/stdc++.h> using namespace std; int main() { srand(time(0)); for (int i = 1; i <= 100; i ++) cout << rand() % 10000000000 + 1 << '\n'; return 0; }