#include int main(){ int x; int i; x = 1; for(i = 5; i > 0; i++){ x = x * i; } printf("%d\n",x); return 0; }