import std.algorithm, std.conv, std.range, std.stdio, std.string; void main() { auto rd = readln.split.to!(int[]), s = rd[0], f = rd[1]; writeln(s / f + 1); }