stringオブジェクトにスペース付きの文字列を入力("hello world"など)

#include <iostream>
#include <conio.h>
#include <string>
using namespace std;

void main(){
	string s;
	getline(cin, s);
	cout << s << endl;
	getch();//一時停止
}

//cin >> s;で"hello world"と入れてもちぎれる(cout << s;の結果が"hello")