#include <iostream>
#include <string>
using namespace std;

std::string Exec(const char* cmd){
	cout<<cmd<<endl;
	return "hey";
}

int main() {
	std::string s="hello";
	const char * c = s.c_str();
	Exec(c);
	return 0;
}