Labels:text | screenshot | font OCR: Our solution to Outside Assignment 4 (in FIB. ANS): separate (FIBTEST) function FIB(N : in POSITIVE) return POSITIVE is ANSWER : POSITIVE := 1; begin if N > 2 then ANSWER := FIB(N - 1) + FIB(N - 2); end if ; return ANSWER; end FIB;