Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Chef bought car insurance. The policy of the insurance is:
Chef’s car meets an accident and required Rs Y lakhs for repairing.
Determine the amount that will be rebated by the insurance company.
For each test case, output the amount (in lakhs) that will be rebated by the insurance company.
Input: 4
5 3
5 8
4 4
15 12
Output: 3
5
4
12
Test case 1: The damages require only Rs 3 lakh which is below the upper cap, so the entire Rs 3 lakh will be rebated.
Test case 2: The damages require Rs 8 lakh which is above the upper cap, so only Rs 5 lakh will be rebated.
Test case 3: The damages require only Rs 4 lakh which is equal to the upper cap, so the whole Rs 4 lakh will be rebated.
Test case 4: The damages require Rs 15 lakh which is above the upper cap, so only Rs 12 lakh will be rebated.
#include<bits/stdc++.h>
using namespace std;
#define int long long int
int32_t main()
{
int t;
cin>>t;
while(t--)
{
int x,y;
cin>>x>>y;
cout<<min(x,y)<<endl;
}
}
T=int(input())
for i in range(T):
X,Y=map(int,input().split())
if X>=Y:
print(Y)
else:
print(X)
import java.util.*;
import java.lang.*;
import java.io.*;
class Codechef
{
public static void main (String[] args) throws java.lang.Exception
{
Scanner scn= new Scanner(System.in); //System.in is a standard input stream
int T= scn.nextInt();
for(int i=0; i<T; i++){
int X= scn.nextInt();
int Y= scn.nextInt();
if(Y<=X){
System.out.println(Y);
}
else{
System.out.println(X);
}
}
}
}
In our experience, we suggest you solve this Insurance CodeChef Solution and gain some new skills from Professionals completely free and we assure you will be worth it.
If you are stuck anywhere between any coding problem, just visit Queslers to get the Insurance CodeChef Solution
I hope this Insurance CodeChef Solution would be useful for you to learn something new from this problem. If it helped you then don’t forget to bookmark our site for more Coding Solutions.
This Problem is intended for audiences of all experiences who are interested in learning about Data Science in a business context; there are no prerequisites.
Keep Learning!
More Coding Solutions >>