P,Q,R = map(int,input().split()) A,B,C = map(int,input().split()) MA = min(P*A,Q*(A+B),R*(A+B+C)) MI = max(P*(A-1)+1,Q*(A+B-1)+1,R*(A+B+C-1)+1) if MI<=MA: print(MI,MA) else: print(-1)