#include <iostream>
input/output functionality using streams
streams can be input only, output only, or allow both
predefined streams:
cin, cout, cerr, clog
print to the screen:
cout << "Hello, " << "World!"
read from standard in:
cin >> a >> b;
DO NOT mix stdio and iostream