# -*- coding:utf-8 -*- import math if __name__ == "__main__": a,b = map(int,raw_input().split()) print int(math.ceil(b / float(a)))