用递归main函数实现了
#include <stdio.h>
int N = 101;
int main(int argc, char** argv) {
    printf("%d ", N > 2 ? main(N--, argv) : 1);
    return N++;
}