#coding:utf-8 n=raw_input().split() a=int(n[0]) b=int(n[1]) if b <= a: print 1 else: if b % a ==0: print b/a else: print b//a +1