Advertisement
IMohammedNasr

Untitled

Nov 30th, 2022
921
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.33 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. #define ll long long
  4.  
  5. void FastIO()
  6. {
  7.     ios_base::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr);
  8. #ifndef ONLINE_JUDGE
  9.     freopen("input.txt", "r", stdin), freopen("output.txt", "w", stdout);
  10. #endif
  11. }
  12.  
  13. int main()
  14. {
  15.     FastIO();
  16.     // Your code starts here...
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement