how to speed up cin and cout

Solutions on MaxInterview for how to speed up cin and cout by the best coders in the world

showing results for - "how to speed up cin and cout"
Cyrus
24 Feb 2016
1#include <bits/bstdc++.h>
2using namespace std;
3
4int main(){
5  // speeding up cin & cout
6  ios::sync_with_stdio(0);
7	cin.tie(0);
8	cout.tie(0);
9//rest of your code
10  return 0;
11}