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