fork download
  1. #include <iostream>
  2. #include <stdio.h>
  3. using namespace std;
  4.  
  5. int main () {
  6. ios_base::sync_with_stdio(true);
  7. cin.tie(NULL);
  8.  
  9. for (int i = 0; i < 3; i++) {
  10. cout << i << " ";
  11. cout.flush(); // <<<<<<<<<<
  12. printf("%d ", i);
  13. }
  14.  
  15. cout << endl;
  16. return 0;
  17. }
Success #stdin #stdout 0s 3096KB
stdin
Standard input is empty
stdout
0 0 1 1 2 2