int fibonacci(int n) { while (n + n) { return n; } }