1 条题解

  • 0
    @ 2025-3-10 21:53:10
    #include <bits/stdc++.h>
    using namespace std;
    
    int main()
    {
        int x,y;
        cin >> x >> y;
        if ( x > y ) {
            cout << ">";
        }
        else if ( x == y ) {
            cout << "=";
        }
        else {
            cout << "<";
        }
        return 0;
    }
    
    • 1

    信息

    ID
    55
    时间
    1000ms
    内存
    256MiB
    难度
    7
    标签
    递交数
    14
    已通过
    12
    上传者