import std.stdio, std.conv, std.string, std.range, std.array, std.algorithm, std.math; int main() { auto I = readln().strip().split().map!(to!real)().array(); auto a = I[0]; auto b = I[1]; writeln(ceil(b/a).to!int()); return 0; }