#include int main(void) { int i, n; printf("input n:"); scanf("%d", &n); for (i=n; i>0; i--) { printf("%d\n", i); } return 0; }