Run ID:112801
提交时间:2025-03-12 20:55:33
#include <bits/stdc++.h> using namespace std; int main() { char a[155], b[155]; cin >> a >> b; if(strlen(a) == strlen(b)) { cout << "yes" << '\n'; } else { cout << "no" << '\n'; } return 0; }