#include <stdio.h>

int main(void) {
	// your code goes here
    float a,b,max;
    scanf("%f%f",&a,&b);
    if(a>b) max=a;
    else    max=b;
    printf("%f",max);
	return 0;
}
