10 条题解

  • 0
    @ 2024-4-12 20:01:26
    #include<bits/stdc++.h>
    using namespace std;
    string a;
    int main()
    {
    	int x,y;
    	cin>>x>>y;
    	if(x>y)
    	{
    		cout<<">"<<endl;
    	}
    	else if(x<y)
    	{
    		cout<<"<"<<endl;
    	}
    	else
    	{
    		cout<<"="<<endl;
    	}
    	return 0;
    }
    
    

    信息

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