Algorithm
problem link : https://www.codechef.com/problems/BESTOFTWO
Problem
Chef took an examination two times. In the first attempt, he scored marks while in the second attempt he scored marks. According to the rules of the examination, the best score out of the two attempts will be considered as the final score.
Determine the final score of the Chef.
Input Format
- The first line contains a single integer — the number of test cases. Then the test cases follow.
- The first line of each test case contains two integers and — the marks scored by Chef in the first attempt and second attempt respectively.
Output Format
For each test case, output the final score of Chef in the examination.
Constraints
Sample 1:
4 40 60 67 55 50 50 1 100
60 67 50 100
Explanation:
Test Case 1: The best score out of the two attempts is .
Test Case 2: The best score out of the two attempts is .
Test Case 3: The best score out of the two attempts is .
Code Examples
#1 Code Example with C Programming
Code -
C Programming
#include<stdio.h>
int main()
{
int t,n,m;
scanf("%d",&t);
while(t--)
{
scanf("%d %d",&n,&m);
printf("%d\n",n*5+m*7);
}
}
Copy The Code &
Try With Live Editor
Input
40 60
67 55
50 50
1 100
Output
67
50
100
Demonstration
CodeChef solution BESTOFTWO - Best of Two CodeChef solution in C,C++