Run ID:102641
提交时间:2024-12-22 13:29:29
#include<iostream> #include<cstring> using namespace std; int main() { char str1[100],str2[100]; cin>>str1>>str2; if(strlen(str1)==strlen(str2)){ cout<<"yes"; }else{ cout<<"no"; } return 0; }