Problem
Uttu broke his phone. He can get it repaired by spending rupees or he can buy a new phone by spending rupees. Uttu wants to spend as little money as possible. Find out if it is better to get the phone repaired or to buy a new phone.
Input Format
- The first line contains a single integer — the number of test cases. Then the test cases follow.
- The first and only line of each test case contains two space-separated integers and — the cost of getting the phone repaired and the cost of buying a new phone.
Output Format
For each test case,
- output
REPAIR
if it is better to get the phone repaired. - output
NEW PHONE
if it is better to buy a new phone. - output
ANY
if both the options have the same price.
You may print each character of REPAIR
, NEW PHONE
and ANY
in uppercase or lowercase (for example, any
, ANy
, Any
will be considered identical).
Constraints
Sample 1:
3 100 1000 10000 5000 3000 3000
REPAIR NEW PHONE ANY
Explanation:
Test Case 1: It is better to get the phone repaired since .
Test Case 2: It is better to buy a new phone since .
Test Case 3: Uttu can choose either of the two options since .
#include <iostream>
using namespace std;
int main() {
int t;
cin>>t;
while(t>0){
int x, y;
cin>>x>>y;
if(x>y){
cout<<"NEW PHONE"<<endl;
}else if(x<y){
cout<<"REPAIR"<<endl;
}else{
cout<<"ANY"<<endl;
}
t= t-1;
}
return 0;
}
0 Comments