Advertisement
Dang_Quan_10_Tin

templatecode

Mar 29th, 2022
692
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. #define task ""
  2. #include <iostream>
  3. #include <cstdio>
  4.  
  5. using namespace std;
  6.  
  7. int32_t main()
  8. {
  9.     ios_base::sync_with_stdio(0);
  10.     cin.tie(0);
  11.     cout.tie(0);
  12.  
  13.     if (fopen(task ".INP", "r"))
  14.     {
  15.         freopen(task ".INP", "r", stdin);
  16.         freopen(task ".OUT", "w", stdout);
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement