# coding: utf-8 (oneStep, total) = [int(i) for i in input().rstrip().split(" ")] ans = int(total/oneStep) + (0 if total % oneStep == 0 else 1) print(ans)