#include <stdio.h>

int main(void) {
    int i = 100;

    printf("%d\n", (int)(100 * 0.29));
    printf("%d\n", (int)(100 * 0.29f));
	return 0;
}