Run ID:132694

提交时间:2025-10-12 10:36:28

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