public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        while (sc.hasNextInt()) {
            int month = sc.nextInt();
            int sum = total(month);
            System.out.println(sum);
        }
    }

    public static int total(int month) {
        if (month <= 2) {
            return 1;
        } else {
            return total(month - 2) + total(month - 1);
        }
    }
}