题解分享
题解分享简介
整数大小比较 - 题解
```
#include <bits/stdc++.h>
using namespace std;
int main()
{
int x,y;
cin >> x >> y;
if ( x > y ) {
cout << ">";
}
else if ( x == y ) {
cout << "=";
}
else {
cout << "<";
}
return 0;
}
```
0
0
0
2



