Run ID:156916
提交时间:2026-07-11 14:26:51
#include<bits/stdc++.h> using namespace std; char a[100],b[100]; int main(){ cin>>a>>b; int len=strlen(a),len2=strlen(b); if(len==len2) cout<<"yes"; else cout<<"no"; return 0; }