fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <time.h>
  4.  
  5. int main() {
  6. int r1,r2;
  7. srand(time(NULL));
  8.  
  9. r1 = rand() % 93 + 1;
  10. r2 = rand() % 74 + 1;
  11.  
  12. printf(" %d %d\n", r1,r2);
  13.  
  14. return 0;
  15. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
 90  16