#define N 5 int main() { register unsigned long long res = 1; while (N>1) { res *= N; --N; } return res; }