Run ID:99290

提交时间:2024-11-24 19:33:06

#include<bits/stdc++.h> using namespace std; char a[80],b[80]; int main(){ gets(a); gets(b); int len1=strlen(a); int len2=strlen(b); strlwr(a);strlwr(b); if(strcmp(a,b)==0){ cout<<"="; } else{ if(strcmp(a,b)>0){ cout<<">"; }else if(strcmp(a,b)<0){ cout<<"<"; } } return 0; }