import std.stdio, std.algorithm, std.conv, std.range, std.math; void main() { auto a = readln.split.map!(to!double); (a[1]/a[0]).ceil.to!int.writeln; }