c++:
#include<iostream>
using namespace std;
int main(){
string a;
cin >> a;
cout << "hello, " << a;
}
python:
print("hello," , input())