#pragma GCC optimize("O3")
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
constexpr int mod = 1e9 + 7;
constexpr int inf = 1e9;
constexpr ll linf = 1e18;
constexpr ld eps = 1e-9;
#define fast_io() ios::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr)
#define all(x) (x).begin(), (x).end()
#define pb push_back
#define fi first
#define se second
#define sz(x) ((int)(x).size())
#define here
void solve() {
int x, y, m; cin >> x >> y >> m;
vector<char> dp(m + 1, false);
dp[0] = true;
for (int i = 0; i <= m; i++) {
if (dp[i] && i + x <= m) dp[i + x] = true;
if (dp[i] && i + y <= m) dp[i + y] = true;
}
for (int i = m; i >= 0; i--) {
if (dp[i]) {
cout << i << '\n';
return;
}
}
}
int main() {
fast_io();
#ifdef here
freopen("pails.in", "r", stdin);
freopen("pails.out", "w", stdout);
#endif
int t = 1;
// cin >> t;
while (t--) solve();
return 0;
}
I3ByYWdtYSBHQ0Mgb3B0aW1pemUoIk8zIikKI2luY2x1ZGUgPGJpdHMvc3RkYysrLmg+CnVzaW5nIG5hbWVzcGFjZSBzdGQ7Cgp1c2luZyBsbCA9IGxvbmcgbG9uZzsKdXNpbmcgbGQgPSBsb25nIGRvdWJsZTsKCmNvbnN0ZXhwciBpbnQgbW9kID0gMWU5ICsgNzsKY29uc3RleHByIGludCBpbmYgPSAxZTk7CmNvbnN0ZXhwciBsbCBsaW5mID0gMWUxODsKY29uc3RleHByIGxkIGVwcyA9IDFlLTk7CgojZGVmaW5lIGZhc3RfaW8oKSBpb3M6OnN5bmNfd2l0aF9zdGRpbyhmYWxzZSk7IGNpbi50aWUobnVsbHB0cik7IGNvdXQudGllKG51bGxwdHIpCiNkZWZpbmUgYWxsKHgpICh4KS5iZWdpbigpLCAoeCkuZW5kKCkKI2RlZmluZSBwYiBwdXNoX2JhY2sKI2RlZmluZSBmaSBmaXJzdAojZGVmaW5lIHNlIHNlY29uZAojZGVmaW5lIHN6KHgpICgoaW50KSh4KS5zaXplKCkpCgojZGVmaW5lIGhlcmUKCnZvaWQgc29sdmUoKSB7CiAgICBpbnQgeCwgeSwgbTsgY2luID4+IHggPj4geSA+PiBtOwogICAgdmVjdG9yPGNoYXI+IGRwKG0gKyAxLCBmYWxzZSk7CiAgICBkcFswXSA9IHRydWU7CiAgICBmb3IgKGludCBpID0gMDsgaSA8PSBtOyBpKyspIHsKICAgICAgICBpZiAoZHBbaV0gJiYgaSArIHggPD0gbSkgZHBbaSArIHhdID0gdHJ1ZTsKICAgICAgICBpZiAoZHBbaV0gJiYgaSArIHkgPD0gbSkgZHBbaSArIHldID0gdHJ1ZTsKICAgIH0KICAgIGZvciAoaW50IGkgPSBtOyBpID49IDA7IGktLSkgewogICAgICAgIGlmIChkcFtpXSkgewogICAgICAgICAgICBjb3V0IDw8IGkgPDwgJ1xuJzsKICAgICAgICAgICAgcmV0dXJuOwogICAgICAgIH0KICAgIH0KfQoKaW50IG1haW4oKSB7CiAgICBmYXN0X2lvKCk7CiNpZmRlZiBoZXJlCiAgICBmcmVvcGVuKCJwYWlscy5pbiIsICJyIiwgc3RkaW4pOwogICAgZnJlb3BlbigicGFpbHMub3V0IiwgInciLCBzdGRvdXQpOwojZW5kaWYKICAgIGludCB0ID0gMTsKLy8gICAgY2luID4+IHQ7CiAgICB3aGlsZSAodC0tKSBzb2x2ZSgpOwogICAgcmV0dXJuIDA7Cn0=