Problem A

Anonymous
c_cpp
10/20/2024 5:54 PM
188 B
35
Indexable
#include <iostream>

using namespace std;

int main() {
    string s;
    cin >> s;
    cout << "Hello, " << s;

    return 0;
}
Editor is loading...
Leave a Comment