fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. void fastIO()
  5. {
  6. ios_base::sync_with_stdio(false);
  7. cin.tie(nullptr);
  8. cout.tie(nullptr);
  9. }
  10.  
  11. int main()
  12. {
  13. fastIO();
  14.  
  15. // Write your code here
  16.  
  17. return 0;
  18. }
Success #stdin #stdout 0s 5312KB
stdin
Standard input is empty
stdout
Standard output is empty