Run ID:153637

提交时间:2026-05-23 15:19:58

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