mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2024-11-09 22:08:58 +01:00
11 lines
163 B
C
11 lines
163 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int main() {
|
||
|
char input[1024];
|
||
|
while (scanf("%s", &input) != EOF) {
|
||
|
printf("Hello, %s!", input);
|
||
|
}
|
||
|
return 0;
|
||
|
}
|