Advertisement
sherry_ahmos

Untitled

Nov 22nd, 2022
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.39 KB | None | 0 0
  1. #include <iostream>
  2. #include <iomanip>
  3. #include <string>
  4. #include <algorithm>
  5. #include <cmath>
  6.  
  7. using namespace std;
  8.  
  9. void sherry()
  10. {
  11.     ios_base::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr);
  12. #ifndef ONLINE_JUDGE
  13.     freopen("input.txt", "r", stdin), freopen("output.txt", "w", stdout);
  14. #endif
  15. }
  16.  
  17. int main()
  18. {
  19.     sherry();
  20.     int x, y;
  21.    
  22.     return 0;
  23. }
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement