Run ID:110550
提交时间:2025-02-22 11:52:55
#include<iostream> using namespace std; int main(){ char a[150],b[150]; int len1=0,len2=0; cin>>a>>b; len1 = strlen(a); len2 = strlen(b); if(len1==len2){ cout<<"yes"<<endl; } else{ cout<<"no"<<endl; } return 0; }