Run ID:118504
提交时间:2025-05-04 13:22:44
#include<bits/stdc++.h> using namespace std; int main(){ char a[200],b[200]; cin>>a>>b; int alen = strlen(a); int blen = strlen(b); if(alen==blen){ cout<<"yes"<<endl; } else{ cout<<"no"<<endl; } return 0; }