We'll get there! Let's have a closer look at the structure of a C++ program, shall we?

See that? The line that starts with #include is a so-called preprocessor directive that gives the program the capability to show things in the console.

The main() function is the entry point of the program. In it, we put the instructions we want the program to follow.