| Problem | fibo |
|---|---|
| User | SilverClaw |
| Submission Time | 2024-02-12 21:40:38 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
fibo.cpp: In function ‘int fibo(int)’:
fibo.cpp:8:19: error: expected ‘;’ before ‘return’
8 | a = a % 998244353
| ^
| ;
9 | return fibo(a-2)+ fibo(a-1);
| ~~~~~~