Problem A
unknown
c_cpp
a year ago
140 B
31
Indexable
#include <iostream>
using namespace std;
int main() {
string s;
cin >> s;
cout << "Hello, " << s;
return 0;
}
Editor is loading...
Leave a Comment
#include <iostream>
using namespace std;
int main() {
string s;
cin >> s;
cout << "Hello, " << s;
return 0;
}