import math K = int(input()) S = int(input()) answer = (1/K)*S answer = math.floor(answer) print(answer)