Run ID:132449

提交时间:2025-10-08 14:06:51

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