Run ID:155518
提交时间:2026-06-07 14:55:01
#include<bits/stdc++.h> #include<cstring> using namespace std; char d[100000],e[100000]; int a,b,c; int main(){ cin.getline(d,100000); cin.getline(e,100000); a=strlen(d); b=strlen(e); if(a==b){ cout<<"yes"; }else{ cout<<"no"; } return 0; }