summaryrefslogtreecommitdiff
path: root/main.cpp
blob: aef800eca688185ac00e32f7a3454f3d52836241 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <iostream>

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;
}