Run ID:115936

提交时间:2025-04-05 17:15:12

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