Advertisement
Ne-Biolog

Untitled

Jan 30th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. #ifdef DEBUG
  2. #define LOCAL_INPUT_FILE
  3. #else
  4. #define USE_FILE_IO
  5. #endif
  6.  
  7. #ifdef USE_FILE_IO
  8. #define INPUT_FILE "input.txt"
  9. #define OUTPUT_FILE "output.txt"
  10. #define cin ____cin
  11. #define cout ____cout
  12. ifstream cin(INPUT_FILE);
  13. ofstream cout(OUTPUT_FILE);
  14. #else
  15. #ifdef LOCAL_INPUT_FILE
  16. #define cin ____cin
  17. ifstream cin("input.txt");
  18. #endif
  19. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement