diff --git a/Practice/Daily Coding Problem/00233/Soln.cpp b/Practice/Daily Coding Problem/00233/Soln.cpp new file mode 100644 index 0000000..062e697 --- /dev/null +++ b/Practice/Daily Coding Problem/00233/Soln.cpp @@ -0,0 +1,27 @@ +#include + +using namespace std; + +typedef long long ll; + +ll fib(ll n){ + ll a=1, b=1; + ll temp; + for(int i=1; i>n; + cout<