#24148: python(一行)、c++解法


s105151@stes.tp.edu.tw (黃柏餅)


c++:

 

#include<iostream>

using namespace std;

int main(){

    string a;

    cin >> a;

    cout << "hello, " << a;

}

 

python:

 

print("hello," , input())