0_0_36741266_17221.cpp:6:9: error: 'll' does not name a type
typedef ll long long;
^
0_0_36741266_17221.cpp:8:1: error: 'll' does not name a type
ll fac[100010];
^
0_0_36741266_17221.cpp:10:22: error: variable or field 'init_factorial' declared void
void init_factorial (ll p)
^
0_0_36741266_17221.cpp:10:22: error: 'll' was not declared in this scope
0_0_36741266_17221.cpp:16:1: error: 'll' does not name a type
ll ksm (ll x, ll y, ll z)
^
0_0_36741266_17221.cpp:25:1: error: 'll' does not name a type
ll mine (ll n, ll m, ll p)
^
0_0_36741266_17221.cpp:31:1: error: 'll' does not name a type
ll Lucas (ll n, ll m, ll p)
^
0_0_36741266_17221.cpp: In function 'int main()':
0_0_36741266_17221.cpp:49:9: error: 'll' was not declared in this scope
ll n, m, p;
^
0_0_36741266_17221.cpp:50:33: error: 'n' was not declared in this scope
scanf ("%lld%lld%lld", &n, &m, &p);
^
0_0_36741266_17221.cpp:50:37: error: 'm' was not declared in this scope
scanf ("%lld%lld%lld", &n, &m, &p);
^
0_0_36741266_17221.cpp:50:41: error: 'p' was not declared in this scope
scanf ("%lld%lld%lld", &n, &m, &p);
^
0_0_36741266_17221.cpp:51:26: error: 'init_factorial' was not declared in this scope
init_factorial (p);
^
0_0_36741266_17221.cpp:52:45: error: 'Lucas' was not declared in this scope
printf ("%lld\n", Lucas (n + m, n, p));
^
|