#include int f(int i) { if (i <= 1) return 1; return f(i - 1) + f(i - 2); } int main() { std::cout << "hello world!" << std::endl; return 0; }