#include<bits/stdc++.h> using namespace std; int main() { double p,s,t; cin>>p>>s>>t; if(p>=s&&p>=t){ cout<<p; } else if(s>=p&&s>=t){ cout<<s; } else if(t>=s&&t>=p){ cout<<t; } }