Created
April 11, 2019 02:43
-
-
Save nikhilmetrani/3faacd3894f04cd36f83ebc308936afd to your computer and use it in GitHub Desktop.
CPP Fast I/O for competitive programming
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <bits/stdc++.h> | |
| static auto fast_io = []() -> int { | |
| // Turn off synchronization between cout and cin. | |
| std::ios_base::sync_with_stdio(false); | |
| std::cin.tie(nullptr); | |
| return 0; | |
| }(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment