# -*- coding: utf-8 -*- a, b = map(int, input().split()) score = 1 while score * a < b: score += 1 print(score)