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