static long stupidFib(int n) { ret n < 3 ? 1 : stupidFib(n-1) + stupidFib(n-2); }