Run ID:95749

提交时间:2024-11-02 10:36:00

#include<bits/stdc++.h> using namespace std; int main(){ int s,b; cin>>s>>b; if(s<b){ cout<<s<<"<"<<b<<endl; } if (b<s){ cout<<b<<"<"<<s<<endl; } return 0; }