Run ID:98336
提交时间:2024-11-19 15:15:38
#include<bits/stdc++.h> using namespace std; const int n=150; char a[n],b[n]; int main(){ gets(a); gets(b); int len1=strlen(a); int len2=strlen(b); if(len1==len2){ cout<<"yes"; } else cout<<"no"; return 0; }