An example, please.
if (n <= 0) return 0; if (n == 1) return 1; int a = 0, b = 1, temp; for (int i = 2; i <= n; i++) { temp = a + b; a = b; b = temp; } return b;
...if only the return type was "Crow" then you could .eat() that...
An example, please.