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