#define N 5 int main() { register unsigned long long res = 1; for (register unsigned long long i=2; i<=N; ++i) { res *= i; } return res; }