iostream

Allows you to get input and output. cin and count are objects that allow us to write to the console and read from the console. When using a keyboard to enter into a variable, that is the input stream. The output stream is when we take data from a program and output it to the console.

cin is an object of the istream class.

cout is an object of the ostream class.