def walk(a, b): c = b / a return round(c) a, b = map(int, input().split()) print(walk(a,b))