Run ID:2586

提交时间:2024-01-13 18:23:51

# include<iostream> using namespace std; int main(){ char a[151],b[151]; cin>>a>>b; int lena=0,lenb=0; while(a[lena]!='\0')lena++; while(b[lenb]!='\0')lenb++; if(lena==lenb) cout<<"yes"<<endl; else cout<<"no"<<endl; return 0; }