fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. // your code goes here
  6. ios::sync_with_stdio(false);
  7. cin.tie(nullptr);
  8.  
  9.  
  10. printf("A");
  11. cout << "B";
  12.  
  13.  
  14. return 0;
  15. }
Success #stdin #stdout 0s 5324KB
stdin
Standard input is empty
stdout
BA