Six Friends
Six friends go on a trip and are looking for accommodation. After looking for hours, they find a hotel which offers two types of rooms — double rooms and triple rooms. A double room costs Rs. X, while a triple room costs Rs. Y.
The friends can either get three double rooms or get two triple rooms. Find the minimum amount they will have to pay to accommodate all six of them.
Input:-3
10 15
6 8
4 8
Input Description: The first line contains A single integer T - The number of test cases. Then The test cases follow.
-The first and only line of each test case contains two integers X and Y - The cost of A double room and The cost of A triple room.
Output: 30
16
12
Output Description: For each testcase, output The minimum amount required to accommodate all The six friends.
Constraints: 1<=T<=100
1<=X<Y<=100
Explanation: Test case 1: The friends can take three double rooms and thus pay a total of Rs.30.
Test case 2: The friends can take two triple rooms and thus pay a total of Rs.16.
Test case 3: The friends can take three double rooms and thus pay a total of Rs.12.