This statement represents the flow of data from the keyboard into the object x:
cin >> x;
This symbol is used to get input and is called extraction:
>>
This statement represents the flow of data from the the object x to the computer screen:
cout << x;
This symbol is used to create output and is called insertion:
<<
cout << "Hello World." << endl;