Itsyaaboij7464 Itsyaaboij7464 27-02-2024 Computers and Technology contestada public static int rFibNum(int a, int b, int n){if(n == 1)return a;else if(n == 2)return b;elsereturn rFibNum(a, b, n - 1) + rFibNum(a, b, n - 2);}What is the limiting condition of the code above?