Run ID:111830

提交时间:2025-03-06 22:20:01

#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; }