#include using namespace std; int main(){ int a[4]; for(int i=0;i<4;i++) cin>>a[i]; int mn=1e9, id=-1; for(int i=0;i<4;i++) if (mn>a[i]) mn=a[i],id=i; a[id]=1e9; //for(int k=0;k<4;k++) cout<