fork download
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4.  
  5. #define DEBUG(msg) (void)0
  6.  
  7. int main() {
  8. int a = rand();
  9. int b = rand();
  10.  
  11. std::cout << a << " " << b << std::endl;
  12. DEBUG(a+b);
  13. return 0;
  14. }
Success #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
1804289383 846930886