Skip to content

Instantly share code, notes, and snippets.

@terakun
Last active August 29, 2015 13:57
Show Gist options
  • Save terakun/9667886 to your computer and use it in GitHub Desktop.
Save terakun/9667886 to your computer and use it in GitHub Desktop.
#include <iostream>
using ulong=unsigned long;
ulong fibo(ulong n){
return n<2?n:fibo(n-1)+fibo(n-2);
}
int main(){
ulong n;
std::cin>>n;
std::cout<<fibo(n)<<std::endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment