#include <stdio.h>
#include <math.h>

int main(void) {
	printf("%.26f\n", nextafterf(1.0, 2.0));
	return 0;
}
