Run ID:102671
提交时间:2024-12-22 14:09:21
#include<iostream> #include<cstring> using namespace std; int main(){ char str1[1001],str2[1001]; cin.getline(str1,1001); cin.getline(str2,1001); if(str1==str2){ cout<<"yes"; }else{ cout<<"no"; } return 0; }