#include <stdio.h>

int main(void) {
	float money = 4.2;
	int cents;
	cents = (int)(money * 100);
	printf("%i", cents);
	return 0;
}

	

