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