ios_base sync_with_stdio(false) cin.tie(null) cout.tie(null) code example
Example: ios_base::sync_with_stdio(false);cin.tie(0);
//For faster I/O in Competitive Progtamming in C++.
ios_base::sync_with_stdio(false);
cin.tie(NULL);
//For faster I/O in Competitive Progtamming in C++.
ios_base::sync_with_stdio(false);
cin.tie(NULL);