#include<iostream> using namespace std; int main() { double a, b; cin >> a >> b; if(a>b){ cout << a<<" "<<b; }else{ cout<<b<<" "<<a; } }