1. 程式人生 > >牛客練習-數字比較

牛客練習-數字比較

牛牛很喜歡對數字進行比較,但是對於3 > 2這種非常睿智的比較不感興趣。上了高中之後,學習了數字的冪,他十分喜歡這種數字表示方法,比如xy。

由此,他想出了一種十分奇妙的數字比較方法,給出兩個數字x和y,請你比較xy和yx的大小,如果前者大於後者,輸出">",小於則輸出"<",等於則輸出"="。

 

輸入描述:

 

兩個數字x和y。

滿足1 <= x,y <= 109


 

輸出描述:

一個字元,">","<"或者"="。

示例1

輸入

2 2

輸出

=

示例2

輸入

2 4

輸出

=
#include<iostream>
using namespace std;
int main()
{
    int x,y;
    cin>>x>>y;
    if(x==y)cout<<'='<<endl;
    else if(x==1&&y>1)cout<<'<'<<endl;
    else if(y==1&&x>1)cout<<'>'<<endl;
    else if(x==2&&y==3)cout<<'<'<<endl;
    else if(x==2&&y==4)cout<<'='<<endl;
    else if(x==2&&y==5)cout<<'>'<<endl;
    else if(y==2&&x==3)cout<<'>'<<endl;
    else if(y==2&&x==4)cout<<'='<<endl;
    else if(y==2&&x==5)cout<<'<'<<endl;
    else
    {
        if(x>y)cout<<'<'<<endl;
        else cout<<'>'<<endl;
    }
    return 0;
}