You now know the basics of C++. You can write programs that compile, print output, and read input.
Every C++ program needs #include, using namespace std, and main()
cout prints output, cin reads input
Semicolons end statements, braces group code
Comments explain your code to others and your future self
Good job finishing this part. The foundation is set. Next, you will learn how to store and manipulate data using variables.