#include int main() { int A, B; std::cin >> A >> B; std::cout << B / A + B % A << std::endl; return 0; }