what is the time complexity of the below algorithm:def myfunction(n):
if n < 2:
out = 1
else:
out = myfunction(n-1) myfunction(n-2)
return out

a (2ⁿ)
b (log(n))
c (n log(n))
d (n²)