fork download
  1. #include <iostream>
  2. #include <ctime>
  3. #include <stdlib.h>
  4.  
  5. using namespace std;
  6.  
  7. int main() {
  8. srand(time(NULL));
  9. int random = rand() % 10000;
  10. cout << random << "\n";
  11.  
  12. return 0;
  13. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
9401