Run ID:116806

提交时间:2025-04-12 15:27:22

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