Run ID:146240
提交时间:2026-01-27 14:14:30
#include<bits/stdc++.h> using namespace std; int main(){ string a, b; int noma=0,nomb=0;; cin >> a >> b; while(a[noma]!='\0'){ noma++; } while(b[nomb]!='\0'){ nomb++; } if(noma==nomb){ cout<<"yes"; }else{ cout<<"no"; } return 0; }