기본 문법 설명
#include <iostream> // iostream이라는 헤더를 포함(include)
using namespace std; // 네임스페이스 설명 std::cout
int main() // entry point
{
// 주석(comment) 다는 방법
cout << "Hello, World!" << endl;
// printf("Hello World!!! by printf");
// 입출력에 대해서는 뒤에 다시 나와요.
char user_input[100];
cin >> user_input;
cout << user_input;
return 0;
}