#include using namespace std; #define REP(i,n) for(int i=0; i<(int)(n); i++) #define FOR(i,b,e) for (int i=(int)(b); i<(int)(e); i++) #define ALL(x) (x).begin(), (x).end() const double PI = acos(-1); const long long MOD = 1e9 + 7; int main() { ios_base::sync_with_stdio(0); cin.tie(0); long long n; cin >> n; long long x = 1; vector r; for (int i = 0; i < 1000; i++) { r.push_back(x % MOD); x = 10 * x + 3; } if (n > r.size()) cout << r.back() << endl; else cout << r[n] << endl; return 0; }