1 条题解

  • 2
    @ 2025-11-30 10:19:03
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
        int a,b;
        cin>>a>>b;
        if(a>b)
            cout<<">";
        else if(a==b)
            cout<<"=";
        else
            cout<<"<";
        return 0;
    }
    
    • 1

    信息

    ID
    6896
    时间
    1000ms
    内存
    512MiB
    难度
    1
    标签
    递交数
    47
    已通过
    24
    上传者