Run ID:124776
提交时间:2025-07-12 14:52:02
#include<iostream> #include<cstring> char arr[150]; char brr[150]; using namespace std; int main(){ cin>>arr; cin>>brr; int sb=strlen(arr); int bt=strlen(brr); if(sb==bt){ cout<<"yes"; }else{ cout<<"no"; } }