#include<stdio.h>
main()
{
float a,b;
printf("输入俩个任意实数 ");
scanf("%f%f",&a,&b);
if(a>b)
printf("%f ",a);
else
printf("%f ",b);
return 0;
}