3 条题解

  • 1
    @ 2025-6-28 10:36:00

    #include using namespace std;

    int main(){

    int a,b;
    cin>>a>>b;
    if(a==b){ cout<<"Yes";
    }else{ cout<<"No";
     }
      return 0; }
    
    • 0
      @ 2025-8-25 9:23:25

      #include<bits/stdc++.h> using namespace std; int main() { int a,b; scanf("%d%d",&a,&b); if(a==b){ printf("Yes"); }else printf("No"); return 0; }

      • 0
        @ 2025-1-18 16:03:34

        #include using namespace std; int main() { int a,b; cin>>a>>b; if(a==b){ cout<<"Yes"; }else{ cout<<"No"; } return 0; }

        • 1

        信息

        ID
        17
        时间
        1000ms
        内存
        256MiB
        难度
        3
        标签
        递交数
        63
        已通过
        35
        上传者