#pragma GCC optimize("Ofast") #include using namespace std; typedef long long int ll; typedef unsigned long long int ull; mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count()); ll myRand(ll B) { return (ull)rng() % B; } inline double time() { return static_cast(chrono::duration_cast(chrono::steady_clock::now().time_since_epoch()).count()) * 1e-9; } template struct static_modint { using mint = static_modint; int x; static_modint() : x(0) {} static_modint(int64_t y) : x(y >= 0 ? y % mod : (mod - (-y) % mod) % mod) {} mint& operator+=(const mint& rhs) { if ((x += rhs.x) >= mod) x -= mod; return *this; } mint& operator-=(const mint& rhs) { if ((x += mod - rhs.x) >= mod) x -= mod; return *this; } mint& operator*=(const mint& rhs) { x = (int) (1LL * x * rhs.x % mod); return *this; } mint& operator/=(const mint& rhs) { return *this = *this * rhs.inv(); } mint pow(long long n) const { mint _x = *this, r = 1; while (n) { if (n & 1) r *= _x; _x *= _x; n >>= 1; } return r; } mint inv() const { return pow(mod - 2); } mint operator+() const { return *this; } mint operator-() const { return mint() - *this; } friend mint operator+(const mint& lhs, const mint& rhs) { return mint(lhs) += rhs; } friend mint operator-(const mint& lhs, const mint& rhs) { return mint(lhs) -= rhs; } friend mint operator*(const mint& lhs, const mint& rhs) { return mint(lhs) *= rhs; } friend mint operator/(const mint& lhs, const mint& rhs) { return mint(lhs) /= rhs; } friend bool operator==(const mint& lhs, const mint& rhs) { return lhs.x == rhs.x; } friend bool operator!=(const mint& lhs, const mint& rhs) { return lhs.x != rhs.x; } friend ostream &operator<<(ostream &os, const mint &p) { return os << p.x; } friend istream &operator>>(istream &is, mint &a) { int64_t t; is >> t; a = static_modint(t); return (is); } }; const unsigned int mod = 998244353; using modint = static_modint; modint mod_pow(ll n, ll x) { return modint(n).pow(x); } modint mod_pow(modint n, ll x) { return n.pow(x); } int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); ll c,y; cin >> c >> y; vector v = {10000, 5000, 1000, 500}; vector cnt(4); ll cur = 0; for (int i = 0; i < 4; ++i) { cnt[i] = y/v[i]; y %= v[i]; } ll res = 0; cur = y/100; for (int i = 3; i >= 0; --i) { if (cur >= c) break; ll gt = v[i]/100; ll need = (c-cur+gt-1)/gt; if (need <= cnt[i]) { res += need; cur += need*gt; } else { cur += cnt[i]*gt; res += cnt[i]; } } if (cur < c) { cout << "can't exchange" << endl; } else { if (res == 0) { cout << "no exchange" << endl; } else { cout << cur << endl; } } }