mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2024-11-09 22:08:58 +01:00
11 lines
189 B
C++
11 lines
189 B
C++
#include <cstdlib>
|
|
#include <iostream>
|
|
#include <string>
|
|
|
|
int main() {
|
|
std::string line;
|
|
std::getline(std::cin, line);
|
|
std::cout << "Hello, " + line + "!\n";
|
|
return EXIT_SUCCESS;
|
|
}
|