1 条题解

  • 1
    @ 2025-4-27 18:56:05
    #include <bits/stdc++.h>
    using namespace std;
    int main(){
        int x,y;
        cin>>x>>y;
        if(x>y){
            cout<<">"<<endl;
        }
        else if(x==y){
            cout<<"="<<endl;
        }
        else cout<<"<"<<endl;
        return 0;
    }
    
    • 1

    信息

    ID
    108
    时间
    1000ms
    内存
    128MiB
    难度
    4
    标签
    递交数
    205
    已通过
    99
    上传者