You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
336 B

2 years ago
#include <bits/stdc++.h>
//十年OI一场空不开long long见祖宗~
using namespace std;
typedef long long LL;
int main() {
int n;
cin >> n;
LL a = 1, b = 1, c = 0;
for (int i = 3; i <= n; i++) {
c = a + b;
a = b;
b = c;
}
cout << c << ".00" << endl;
return 0;
}