#include<stdio.h>int main(){ int n, s = 1; for (n = 1; n <= 5; n++) { s = s*n; } printf("%d", s); system("pause"); return 0;}