#include <stdio.h>

int main(void) {
	float a;
	double b;
	a=123456.789e4;
	b=123456.789e4;
	printf("%f\nf",a,b);
	// your code goes here
	return 0;
}
