#include <stdio.h>
int main(void) {
float a = 1.05;
int b = a * 100;
printf("%d\n", b);
printf("%.20f\n", a);
return 0;
}