проблем със задачата Pipes in pool в judge:com
Здравейте колеги, моля за помощ. В judge.com mi dawa 92 от 100 и не мога да разбера защо? 
v = int(input())
p1 = int(input())
p2 = int(input())
h = float(input())
first_pipe = h * p1
second_pipe = h * p2
result = first_pipe + second_pipe
if result < v:
    first_pipe = (first_pipe / result) * 100
    second_pipe = (second_pipe / result) * 100
    result = (result / v) * 100
    print(f'The pool is {result:.2f}% full. Pipe 1: {first_pipe:.2f}%. Pipe 2: {second_pipe:.2f}%.')
else:
    result = result - v
    print(f'For {h} hours the pool overflows with {result:.2f} liters.')
        
Ааа вярно, не се сетих за това. Благодаря ти :)