#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include template inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } const long long MAX = 5100000; const long long INF = 1LL << 60; const long long mod = 1000000007LL; //const long long mod = 998244353LL; using namespace std; typedef unsigned long long ull; typedef long long ll; vector dp; ll dfs(ll cur) { if (dp[cur] != -1) return dp[cur]; if (cur == 0) return dp[0] = 0; ll res = INF; for (ll i = 1; i * i <= cur; i++) { chmin(res, dfs(cur - i * i) + i); } return dp[cur] = res; } int main() { /* cin.tie(nullptr); ios::sync_with_stdio(false); */ ll N; scanf("%lld", &N); dp = vector(N + 1, -1); dfs(N); dp[0] = 0; ll now = N; //cout << dp[N] << endl; string res; multiset even, odd; while (now > 0) { for (ll i = 1; i <= N; i++) { if (dp[now - i * i] + i == dp[now]) { if (i & 1) odd.insert(i); else even.insert(i); now -= i * i; break; } } } int c = 0; while (!odd.empty() || !even.empty()) { if (c == 0) { if (!odd.empty()) { ll cnt = *odd.begin(); odd.erase(odd.begin()); for (ll i = 0; i < cnt; i++) { res += (char)(c + '0'); c = (c + 1) % 2; } c = (c + 1) % 2; } else { ll cnt = *even.rbegin(); even.erase(--even.end()); for (ll i = 0; i < cnt; i++) { res += (char)(c + '0'); c = (c + 1) % 2; } c = (c + 1) % 2; } } else { if (even.empty()) { ll cnt = *odd.rbegin(); odd.erase(--odd.end()); for (ll i = 0; i < cnt; i++) { res += (char)(c + '0'); c = (c + 1) % 2; } c = (c + 1) % 2; } else { ll cnt = *even.begin(); even.erase(even.begin()); for (ll i = 0; i < cnt; i++) { res += (char)(c + '0'); c = (c + 1) % 2; } c = (c + 1) % 2; } } } cout << res << endl; return 0; }