CodechefJun 30, 2025

Get Lowest Free

Hazrat Ali

Codechef

Chef goes to the supermarket to buy some items. Luckily there's a sale going on under which Chef gets the following offer:

  • If Chef buys 3 items then he gets the item (out of those 3 items) having the lowest price as free.

For e.g. if Chef bought 33 items with the cost 62 and 4, then he would get the item with cost 2 as free. So he would only have to pay the cost of the other two items which will be 6+4=10

Chef buys 3 items having prices AB and C respectively. What is the amount of money Chef needs to pay?

Input Format

  • The first line will contain an integer T - number of test cases. Then the test cases follow.
  • The first and only line of each test case contains three integers A,B,C - the prices of the items bought by Chef.

Output Format

For each test case, output the price paid by Chef.

Constraints

  • 1≤T≤100
  • 1≤A,B,C≤10

Sample 1:

Input
3
6 2 4
3 3 3
8 4 4

Output
10
6
12

Solution

T = int(input())
for _ in range(T):
    A, B, C = map(int, input().split())
    total = A + B + C
    lowest = min(A, B, C)
    print(total - lowest)


 

Comments