Run ID:109295
提交时间:2025-02-08 10:05:31
#include <bits/stdc++.h> using namespace std; int main() { char a[10001],b[10001]; cin>>a>>b; if(strlen(a)==strlen(b)){ cout<<"yes"; } else{ cout<<"no"; } return 0; }