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