Q

codeup 1072

codeup 1072번 문제

codeup 1072번 문제


C code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <stdio.h>

int main(void)
{
int n, input;

scanf("%d", &n);

here:
n--;
scanf("%d", &input);
if(n >= 0)
{
printf("%d\n", input);
goto here;
}

return 0;
}