Codeforces Round #485 (Div. 2) 987B. High School: Become Human Solution
Problem Link: https://codeforces.com/contest/987/problem/B
Solution in C++:
///La ilaha illellahu muhammadur rasulullah
///******Bismillahir-Rahmanir-Rahim******///
///Abul Hasnat Tonmoy
///Department of CSE,23rd batch
///Islamic University,Bangladesh
///**********ALLAH IS ALMIGHTY************///
#include <bits/stdc++.h>
using namespace std;
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
long double x,y,a,b;
while(cin>>x>>y)
{
a=y*log(x);
b=x*log(y);
cout<<(a>b?">":a<b?"<":"=")<<endl;
}
}
No comments