Run ID:2693
提交时间:2024-01-20 17:45:36
# include<iostream> # include<cstring> using namespace std; int main(){ char s1[1000], s2[1000]; cin>>s1>>s2; if(!strcmp(s1,s2)){ cout<<"yes"; } else{ cout<<"no"; } }