K = int(input()) S = int(input()) remaining = (100 - K) / 100 speed = remaining / S duration = int(((1 / speed) * 2 + 1) // 2) print(duration)