Run ID:146177
提交时间:2026-01-27 13:58:17
#include<bits/stdc++.h> using namespace std; int main (){ string a[152] s[152]; int n=0,d=0; cin >> a >> s; while(a[n] != '\0') { n++; } while(a[d] != '\0') { d++; } if(n==d) { cout <<"yes"; } else { cout << "no"; } return 0; }