Judger/tests/test_src/integration/normal.c
2016-10-24 23:01:55 +08:00

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;
}