====== Input in C++ ====== ((This article is a stub just to get up and running. Please consider expanding it.)) ===== Faster Input ===== #include using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); return 0; } ===== Fastest Input ===== Sorry, it's just difficult to beat [[http://www.cplusplus.com/reference/cstdio/scanf/|scanf]].