#define PROBLEM Helloworld // "Env.h"ヘッダが存在していたらインクルードする #if __has_include("../Env.h") #include "../Env.h" #endif #include #include class Helloworld { public: void solve() { int a, b, ans; std::cin >> a >> b; ans = std::ceil(1.0*b/a); std::cout << ans << std::endl; } }; #ifndef YUKICODER_ENV_H int main() { auto problem = new PROBLEM(); problem->solve(); return 0; } #endif //YUKICODER_ENV_H