Run ID:118287

提交时间:2025-04-26 17:19:56

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