#include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; #define COUT(x) cout << #x << " = " << (x) << " (L" << __LINE__ << ")" << endl template void printvec(const vector& v) { for (auto x : v) { cout << x << " "; } cout << endl; } template void printtree(const vector< vector >& tree) { for (long long i = 0; i < tree.size(); ++i) { cout << i + 1 << ": "; printvec(tree[i]); } } template void printmap(const map& mp) { for (auto x : mp) { cout << x.first << "=>" << x.second << endl; } } template inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } #define rep(i, n) for(ll i = 0; i < n; ++i) #define all(s) s.begin(), s.end() #define sz(x) (ll)(x).size() #define fr first #define sc second #define mp make_pair #define pb push_back #define eb emplace_back typedef long long ll; typedef unsigned long long ull; typedef pair P; typedef tuple triple; typedef double D; typedef vector vl; typedef vector

vp; const ll INF = 1e9; ll MOD; // Mod int // cf. https://www.youtube.com/watch?v=1Z6ofKN03_Y struct mint { ll x; mint(ll x = 0) : x((x + MOD) % MOD) {} mint& operator+= (const mint a) { if ((x += a.x) >= MOD) x %= MOD; return *this; } mint operator+ (const mint a) const { mint res(*this); return res += a; } mint& operator-= (const mint a) { if ((x += MOD - a.x) >= MOD) x %= MOD; return *this; } mint operator- (const mint a) const { mint res(*this); return res -= a; } mint& operator*= (const mint a) { (x *= a.x) %= MOD; return *this; } mint operator* (const mint a) const { mint res(*this); return res *= a; } mint pow(ll t) const { if (!t) { return 1; } mint a = pow(t >> 1); a *= a; if (t & 1) a *= *this; return a; } // for prime mod mint inv() const { return pow(MOD-2); } mint& operator/= (const mint a) { return (*this) *= a.inv(); } mint operator/ (const mint a) const { mint res(*this); return res /= a; } }; istream& operator>>(istream& is, const mint& a) { return is >> a.x;} ostream& operator<<(ostream& os, const mint& a) { return os << a.x;} int main(int argc, char** argv) { cin.tie(NULL); cout.tie(NULL); ios_base::sync_with_stdio(false); //cout << setprecision(10) << fixed; ll n; cin >> n >> MOD; vector dp(n+1); dp[0] = 0; dp[1] = 1; rep(i,n-2) { dp[i+2] = dp[i+1] + dp[i]; } cout << dp[n-1] << endl; }