#include using namespace std; int x[5]; int main() { cin>>x[1]>>x[2]>>x[3]>>x[4]; for(int i=1;i<=4;++i) for(int j=i+1;j<=4;++j) if(x[i]>x[j]) swap(x[i],x[j]); cout<