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