#include <stdio.h>

int main(void) {
 unsigned int i;
for (i = 100; i >=0; --i)
    printf("%ld\n", i);
    return 0;
}
