Run ID:146609

提交时间:2026-01-29 14:25:32

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