1 条题解

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

    信息

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