package contest170623; import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.Arrays; import java.util.InputMismatchException; public class E { InputStream is; PrintWriter out; String INPUT = ""; void solve() { long mod = 1000000007; long xmod = mod*(mod+1); long n = nl(); if(n == 0){ out.println(0); return; } long e = fibr(n, xmod); out.println(fib(e, mod)); } public static long mulRobust(long a, long b, long mod) { if(a >= mod || a < 0)a %= mod; if(a < 0)a += mod; if(b >= mod || b < 0)b %= mod; if(b < 0)b += mod; long ret = 0; int x = 63-Long.numberOfLeadingZeros(b); for(;x >= 0;x--){ ret += ret; if(ret >= mod)ret -= mod; if(b<<~x<0){ ret += a; if(ret >= mod)ret -= mod; } } return ret; } public static long fib(long n, long mod) { long a = 1, b = 1, d = 0; long va = 1, vb = 0; // (1 1)(1) // (1 0)(0) for(n--;n>0;n>>>=1){ if((n&1)==1){ long nva = (a*va+b*vb)%mod; long nvb = (b*va+d*vb)%mod; va = nva; vb = nvb; } long na = (a*a+b*b)%mod; long nb = (b*(a+d))%mod; long nd = (d*d+b*b)%mod; a = na; b = nb; d = nd; } return va; } public static long fibr(long n, long mod) { long a = 1, b = 1, d = 0; long va = 1, vb = 0; // (1 1)(1) // (1 0)(0) for(n--;n>0;n>>>=1){ if((n&1)==1){ long nva = (mulRobust(a, va, mod)+mulRobust(b, vb, mod))%mod; long nvb = (mulRobust(b, va, mod)+mulRobust(d, vb, mod)) % mod; va = nva; vb = nvb; } long na = (mulRobust(a, a, mod) + mulRobust(b, b, mod))%mod; long nb = (mulRobust(b, a+d, mod))%mod; long nd = (mulRobust(d, d, mod) + mulRobust(b, b, mod))%mod; a = na; b = nb; d = nd; } return va; } void run() throws Exception { is = INPUT.isEmpty() ? System.in : new ByteArrayInputStream(INPUT.getBytes()); out = new PrintWriter(System.out); long s = System.currentTimeMillis(); solve(); out.flush(); if(!INPUT.isEmpty())tr(System.currentTimeMillis()-s+"ms"); // Thread t = new Thread(null, null, "~", Runtime.getRuntime().maxMemory()){ // @Override // public void run() { // long s = System.currentTimeMillis(); // solve(); // out.flush(); // if(!INPUT.isEmpty())tr(System.currentTimeMillis()-s+"ms"); // } // }; // t.start(); // t.join(); } public static void main(String[] args) throws Exception { new E().run(); } private byte[] inbuf = new byte[1024]; public int lenbuf = 0, ptrbuf = 0; private int readByte() { if(lenbuf == -1)throw new InputMismatchException(); if(ptrbuf >= lenbuf){ ptrbuf = 0; try { lenbuf = is.read(inbuf); } catch (IOException e) { throw new InputMismatchException(); } if(lenbuf <= 0)return -1; } return inbuf[ptrbuf++]; } private boolean isSpaceChar(int c) { return !(c >= 33 && c <= 126); } private int skip() { int b; while((b = readByte()) != -1 && isSpaceChar(b)); return b; } private double nd() { return Double.parseDouble(ns()); } private char nc() { return (char)skip(); } private String ns() { int b = skip(); StringBuilder sb = new StringBuilder(); while(!(isSpaceChar(b))){ // when nextLine, (isSpaceChar(b) && b != ' ') sb.appendCodePoint(b); b = readByte(); } return sb.toString(); } private char[] ns(int n) { char[] buf = new char[n]; int b = skip(), p = 0; while(p < n && !(isSpaceChar(b))){ buf[p++] = (char)b; b = readByte(); } return n == p ? buf : Arrays.copyOf(buf, p); } private int[] na(int n) { int[] a = new int[n]; for(int i = 0;i < n;i++)a[i] = ni(); return a; } private long[] nal(int n) { long[] a = new long[n]; for(int i = 0;i < n;i++)a[i] = nl(); return a; } private char[][] nm(int n, int m) { char[][] map = new char[n][]; for(int i = 0;i < n;i++)map[i] = ns(m); return map; } private int[][] nmi(int n, int m) { int[][] map = new int[n][]; for(int i = 0;i < n;i++)map[i] = na(m); return map; } private int ni() { return (int)nl(); } private long nl() { long num = 0; int b; boolean minus = false; while((b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-')); if(b == '-'){ minus = true; b = readByte(); } while(true){ if(b >= '0' && b <= '9'){ num = num * 10 + (b - '0'); }else{ return minus ? -num : num; } b = readByte(); } } private static void tr(Object... o) { System.out.println(Arrays.deepToString(o)); } }