#ifndef S0509_FIBONACCI_NUMBER_HPP #define S0509_FIBONACCI_NUMBER_HPP #include using namespace std; class S0509 { public: int fib(int n); }; #endif