#include <stdio.h>

int main(void) {
	float a = 1.26558;
	
	int c = a * 100;
	float b = c / 100.0;
	printf("b = %f", b);
	
	// your code goes here
	return 0;
}
