Run ID:95747

提交时间:2024-11-02 10:35:12

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