Problem A

 avatar
unknown
c_cpp
5 months ago
140 B
27
Indexable
#include <iostream>

using namespace std;

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

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