import java.util.Scanner; public class Kenkenpa { public static void main(String[] args) { // TODO 自動生成されたメソッド・スタブ Scanner s = new Scanner(System.in); int N = s.nextInt(); s.close(); long[][] root = new long[N+1][3]; //[i][0]がケン(1)、[i][1]がケン(2)、[i][2]がパ root[1][0] = 1; int t = (int)Math.pow(10, 9) + 7; for(int i = 2;i <= N;i++){ root[i][0] = root[i-1][2]; root[i][1] = root[i-1][0]; root[i][2] = root[i-1][0] + root[i-1][1]; root[i][0] %= t; root[i][1] %= t; root[i][2] %= t; } System.out.println((root[N][0] + root[N][1] + root[N][2]) % t); } }