Run ID:156988

提交时间:2026-07-12 14:05:06

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