1. What I learned

    How to print a message in C++

        ‘iostream’ header file was added first to print the message. I used ‘std:cout < “MESSAGE”’ to print messages, and used ‘using namespace std’ to reduce repeated use of ‘std:’.

2. Code

#include <iostream>

using namespace std;

int main(void) {
    cout << "강한친구 대한육군\n";
    cout << "강한친구 대한육군\n";
    return 0;
}

3. Result

        Runtime : 0 ms, Memory usage : 2016 KB
        (Runtime can be different by a system even if it is a same code.)

Check out the my GitHub repo for more info on the code. If you have questions, you can leave a reply on this post.