#include using namespace std; #define fst(t) std::get<0>(t) #define snd(t) std::get<1>(t) #define thd(t) std::get<2>(t) using ll = long long; using P = std::tuple; const int dx[8] = {-1, 1, 0, 0, -1, -1, 1, 1}, dy[8] = {0, 0, -1, 1, -1, 1, -1, 1}; template T expt(T a, T n, T mod = std::numeric_limits::max()){ T res = 1; while(n){ if(n & 1){res = res * a % mod;} a = a * a % mod; n >>= 1; } return res; } int main(){ std::cin.tie(nullptr); std::ios::sync_with_stdio(false); ll M; std::cin >> M; ll x = 2017; x = (x + expt(2017ll * 2017, 2017ll, M)) % M; std::cout << x << std::endl; }