// Wide string to string
// By DreamVB

#include <iostream>
#include <stdio.h>

using namespace std;
using std::cout;
using std::endl;

int main(int argc, char* argv[])
{ 
	wstring ws = L"Hello-World";
	string s0 = "";

	//Convert wide string to string
	s0 = string(ws.begin(),ws.end());
	//Output the string
	cout << s0.c_str();

	//Ret
    return 0; 
} 
