문제

링크

풀이

#include <stdio.h>
 
int main(void) {
	int n;
 
	scanf("%d", &n);
	for (int i=n; i>=1; i--)
		printf("%d\n", i);
	return 0;
}