#include using lint = long long; void solve() { lint a, b, c; std::cin >> a >> b >> c; lint y = a + b - 1; std::cout << c / y * a + std::min(c % y, a) << std::endl; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }