TomoLink
Mediumtcs-nqt

What is the output? int f(int n) { if(n==1 || n==0) return n; return f(n-1) + f(n-2); } PRINT f(6)