<<<
Index
>>>
Standard Input Stream
std::istream
std::cin;
// predefined object
cin >> x;
// formatted input
int x = cin.get( );
// unformatted input
std::cin
pre-defined object
#include
<iostream>
attached to standard input device
I/O redirection from file or other device
<<<
Index
>>>