Run ID:2687
提交时间:2024-01-20 17:25:46
# include<iostream> # include<cstring> using namespace std; int main(){ char s1[151], s2[151]; cin>>s1>>s2; if(strlen(s1)==strlen(s2)){ cout<<"yes"; } else{ cout<<"no"; } return 0; }