#! /usr/bin/etc python # coding: utf-8 a, b = raw_input("").split(" ") a = int(a) b = int(b) if b % a == 0: print b/a else: print b/a+1