# -*- coding: utf-8 -*- def main(): A, B = map(int, input().split()) m = int(B/A) n = B%A if n>0 : m=m+1 print(m) if __name__ == "__main__": main()