• + 0 comments

    int main() { /* Enter your code here. Read input from STDIN. Print output to STDOUT */
    char s[10000]; cin.getline(s, 10000); cout << "Hello, World." << endl << s << endl; return 0; }