0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 01:25:25 +00:00
OI-codes/AcWing/820/820.cpp

21 lines
269 B
C++

#include <iostream>
using std::cin;
using std::cout;
const char endl = '\n';
int f(int x) {
return x == 1 || x == 2 ? 1 : f(x - 1) + f(x - 2);
}
int n;
int main() {
std::ios::sync_with_stdio(false);
cin >> n;
cout << f(n) << endl;
return 0;
}