12 条题解

  • 1
    @ 2025-5-24 20:07:34
    #include<iostream>
    using namespace std;
    int main(){
    	int a,b;
    	cin>>a>>b;
    	if(a>b){
    		cout<<">";
    	}else if(a<b){
    		cout<<"<";
    	}else{
    		cout<<"=";
    	}
    	return 0;
    }
    
    

    信息

    ID
    891
    时间
    1000ms
    内存
    128MiB
    难度
    3
    标签
    递交数
    751
    已通过
    421
    上传者