You are viewing a single comment's thread. Return to all 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; }
Seems like cookies are disabled on this browser, please enable them to open this website
Day 0: Hello, World.
You are viewing a single comment's thread. Return to all 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; }