Run ID:99289

提交时间:2024-11-24 19:32:11

#include<bits/stdc++.h> using namespace std; char a[100000],b[10000]; 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; }