#include <iostream>
#include <iomanip>
#include <math.h>
using namespace std;
int main() {
double x; double y; double z;
cin >> x; cin >> y; cin >> z;
if (x < y && x < z) {
cout << setprecision(15) << x << " ";
}
else if (y < x && y < z) {
cout << setprecision(15) << y << " ";
}
else if (z < x && z < y) {
cout << setprecision(15) << z << " ";
}
if (x > y && x > z) {
cout << setprecision(15) << x << endl;
}
else if (y > x && y > z) {
cout << setprecision(15) << y << endl;
}
else if (z > x && z > y) {
cout << setprecision(15) << z << endl;
}
}