10 lines
134 B
C
10 lines
134 B
C
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
int main(){
|
|
char n[200];
|
|
getline(n);
|
|
printf("Hello, world %s",n);
|
|
|
|
return 0;
|
|
} |