14 条题解

  • -6
    @ 2023-4-20 13:44:34

    #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; }

    信息

    ID
    601
    时间
    1000ms
    内存
    256MiB
    难度
    5
    标签
    (无)
    递交数
    454
    已通过
    167
    上传者