Run ID:110543

提交时间:2025-02-22 11:46:54

#include<bits/stdc++.h> using namespace std; int main(){ char a[150],b[150]; int lenl=0,lenl2=0; cin>>a>>b; lenl=strlen(a); lenl2=strlen(b); if(lenl==lenl2){ cout<<"yes"; } else{ cout<<"no"; } return 0; }