Alex_tz307

Default stream

Oct 30th, 2020
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. ifstream fin("text.in");
  6. ofstream fout("text.out");
  7.  
  8. int main() {
  9.     fin.sync_with_stdio(false);
  10.     fout.sync_with_stdio(false);
  11.     fin.tie(nullptr);
  12.     fout.tie(nullptr);
  13.    
  14. }
  15.  
Advertisement
Add Comment
Please, Sign In to add comment