import java.util.Scanner;
// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int n = in.nextInt();
int first=1,second=1,ans=1;//没进入循环的话,就是ans为前2项的值
for(int i=2;i<n;++i){
ans = first + second;
first = second;
second = ans;
}
System.out.println(ans);
}
}

京公网安备 11010502036488号