Run ID:151703

提交时间:2026-04-18 11:56:34

#include<bits/stdc++.h> using namespace std; int main() { string s,n; int x=0,m=0; getline(cin,s); getline(cin,n); int w=s.size(); int y=n.size(); for(int i=0;i<w;i++){ if(s[i]>='A'&&s[i]<='Z')s[i]+=32; } for(int j=0;j<y;j++){ if(n[j]>='A'&&n[j]<='Z')n[j]+=32; } if(s==n)cout<<'='; else if(s>n)cout<<'>'; else cout<<'<'; return 0; }