Run ID:95755

提交时间:2024-11-02 10:42:46

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