# include<iostream> # include<cmath> using namespace std; int main(){ double a,b; cin>>a>>b; cout<<max(a,b)<<endl;//max,求两个数最大值 return 0; }