working ios::sync_with_stdio(0);cin.tie(0); 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);