Three numbers A, B and C are the inputs. Write a program to find second largest among three numbers. The first line contains an integer T, total number of testcases. Then follow T lines, each line contains three integers A, B and C. Display the second largest among A, B and C. Test Case 1 Input (stdin) 100 23 299 Expected Output 100 Test Case 2 Input (stdin) 30 122 14 Expected Output 30