summaryrefslogtreecommitdiff
path: root/p71/p_71.cpp
blob: a2d369351dfe25ac326ad9b812024e8e981a665f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <iostream>

const int digitToFact[] = {
    [0] = 1,
    [1] = 1,
    [2] = 2,
    [3] = 6,
    [4] = 24,
    [5] = 120,
    [6] = 720,
    [7] = 5040,
    [8] = 40320,
    [9] = 362880
};

int main() {


    return EXIT_SUCCESS;
}