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