fork(1) download
  1. #include <iostream>
  2. #include <time.h>
  3. #include <stdlib.h>
  4.  
  5. using namespace std;
  6.  
  7. int main() {
  8.  
  9. //srand(10000000);
  10. srand(time(NULL));
  11. int n = rand()%100000;
  12. cout << n << endl;
  13. return 0;
  14. }
Success #stdin #stdout 0s 3096KB
stdin
Standard input is empty
stdout
98076