#include <stdio.h>
#include <stdlib.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main() {
// faktöriyel hesaplama
int sayi=9;
int i;
for(i=8;i>=2;i--)
{
sayi=sayi*i;
printf("%d\n",sayi);
}
return 0;
}