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