Run ID:155495

提交时间:2026-06-07 12:25:08

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