Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
144391 万骏博 字符串长度判断 C++ Accepted 1 MS 268 KB 203 2026-01-22 09:49:37

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; string s,c; int a,b; int main(){ cin>>s>>c; a=s.size(); b=c.size(); if(a!=b){ printf("no"); } else{ printf("yes"); } return 0; }