|
Time |
Memory |
Case 1 |
1 sec |
32 MB |
Case 2 |
1 sec |
32 MB |
Case 3 |
1 sec |
32 MB |
Description
#include <stdio.h>
int fibonacci(int n) {
/*
* Your code here
*/
}
int main(void) {
int n;
scanf("%d", &n);
printf("%d\n", fibonacci(n));
return 0;
}
Input
11
Output
89
Tags