//
// main.cpp
// 2_3
//
// Created by T.P on 2018/3/4.
// Copyright ? 2018年 T.P. All rights reserved.
//
//比较两个数的大小
#include <iostream>
#include <iomanip>
using namespace std;
int main(int argc, const char * argv[]) {
int x,y;
cout<<"Please Enter x and y : ";
cin>>x>>y;
cout<<endl;
if(x!=y){
if(x>y)
cout << "x>y";
else
cout << "x<y";
}
else
cout << "x=y";
cout << endl;
return 0;
}