#include <iostream>
#include<string>

using namespace std;

main() {
   
    string a = "hello world";

    cout << a;



}


이거 왜 컴파일오류 나는거에요??