n=int(input()) mod=10**9+7 dp=[0]*(10**6) dp[0]=1 dp[1]=2 dp[2]=2 for i in range(3,n): dp[i]=(dp[i-2]+dp[i-3])%mod print(dp[n-1])