Run ID:112165
提交时间:2025-03-08 16:01:31
#include<bits/stdc++.h> using namespace std; int main(){ char s[151],n[151]; cin>>s>>n; int a=0,b=0; while(s[a]!='\0') a++; while(n[b]!='\0') b++; if(a==b) cout<<"yes"; else cout<<"no"; return 0; }