Run ID:146557

提交时间:2026-01-29 13:14:19

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