int get_input(void); int main(void) { int i = get_input(); int r = 1; int j; for (j = 2; j<=i; j++) r = r * j; return r; }