提交时间:2024-06-09 17:27:56
运行 ID: 48604
#include<bits/stdc++.h> using namespace std; char a[81],b[81]; //string a,b; int main() { gets(a); gets(b); /*getline(cin,a); getline(cin,b);*/ strlwr(a); strlwr(b); if(strcmp(a,b)==0) cout<<"="; else if(strcmp(a,b)<0) cout<<"<"; else cout<<">"; return 0; }