11172 - Relational Operator | UVa
Problem Link : 11172 - Relational Operator
Solution :
Develop by Samsus Salehin Sabbir
Solution :
Develop by Samsus Salehin Sabbir
- #include<iostream>
- using namespace std;
- int main()
- {
- int a,b,t;
- cin >> t;
- while(t--)
- {
- cin >> a >> b;
- if(a<b)
- cout << "<" << endl;
- else if(a>b)
- cout << ">" << endl;
- else
- cout << "=" << endl;
- }
- return 0;
- }
No comments