#include using namespace std; int main() { int a, b; cin >> a >> b; b *= -1; b /= a; b *= -1; cout << b << endl; }