fork download
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. freopen("in.txt","r",stdin);
  7. freopen("out.txt","w",stdout);
  8.  
  9. int n;
  10. n=1000;
  11.  
  12.  
  13. for(int i = 0; i<n; i++)
  14. {
  15. cout << rand() % 5000 << "\n";
  16. }
  17. }
  18.  
Success #stdin #stdout 0.01s 5316KB
stdin
Standard input is empty
stdout
Standard output is empty