#include // TIP To Run code, press or click the icon in the gutter. int main() { // TIP Press when your caret is at the lang variable name to see how CLion can help you rename it. auto lang = "C++"; std::cout << "Hello and welcome to " << lang << "!\n"; for (int i = 1; i <= 5; i++) { // TIP Press to start debugging your code. We have set one breakpoint for you, but you can always add more by pressing . std::cout << "i = " << i << std::endl; } return 0; }