Run ID:102645

提交时间:2024-12-22 13:31:16

#include<iostream> #include<cstring> using namespace std; int main(){ char str1[101],str2[101]; cin.getline(str1,101); cin.getline(str2,101); cin>>str1>>str2; if(strlen(str1)==strlen(str2)){ cout<<"yes"; }else{ cout<<"no"; } return 0; }