mirror of
https://github.com/QingdaoU/Judger.git
synced 2024-12-28 07:51:42 +00:00
8 lines
149 B
C
8 lines
149 B
C
#include <stdio.h>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
char input[1000];
|
|
scanf("%s", input);
|
|
printf("Hello %s\n", input);
|
|
return 0;
|
|
} |