The >> operator always follows the cin object, and the << operator follows the cout 44 object.
Cout and Cin are not key words in the C++ language. Cout is used for
output and cin for input. They
are variables, instances of classes, that have been declared in
<iostream>. The cin
object in C++ is an
object of class istream and cout is an object of class ostream.