Run ID:112272

提交时间:2025-03-09 10:28:04

#include <bits/stdc++.h> using namespace std; int main() { string a,b; getline(cin,a); getline(cin,b); int len = a.size(); int loo = b.size(); if(len==loo){ cout<<"yes"; } else{ cout<<"no"; } return 0; }