mirror of
https://github.com/QingdaoU/Judger.git
synced 2025-01-04 11:21:42 +00:00
11 lines
167 B
C
11 lines
167 B
C
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
int main()
|
|
{
|
|
char input[100];
|
|
scanf("%s", input);
|
|
printf("%s\n", input);
|
|
printf("Hello world");
|
|
return 0;
|
|
} |