Run ID:98344

提交时间:2024-11-19 15:59:24

#include<bits/stdc++.h> using namespace std; int main(){ char s1[1000],s2[1000]; gets(s1); gets(s2); if(strcmpy(s1,s2)==0){ cout<<"yes"; } else cout<<"no"; return 0; }