T = int(input()) for _ in range(T): L, R, A, B = map(int,input().split()) if A < 0: print(L * A + B) else: print(R * A + B)