#include <stdio.h> int fib(int n) { return n<=2?1:fib(n-1)+fib(n-2); } int main() { int n=0; scanf("%d",&n); int ret=fib(n); printf("%d",ret); }