Q

codeup 1022

codeup 1022번 문제

codeup 1022번 문제


C code

1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>

int main(void)
{
char a[51];

fgets(a, 50, stdin);

printf("%s",a);

return 0;
}