Run ID:111829

提交时间:2025-03-06 22:19:07

#include <iostream> #include <string> using namespace std; int main() { string,a,b; cin >> a >> b; if (a.length() == b.length()) { cout << "yes" << endl; } else { cout << "no" << endl; } return 0; }