// shoes1.c -- converts a shoe size to centimeters
#include <stdio.h>

const float ADJUST = 19.4056;
const float SCALE = 0.8255;

int main(void)
{
	double shoe, foot;

	shoe = 9.0;
	foot = SCALE * shoe + ADJUST;
	printf("Shoe size (men's)    foot length\n");
	printf("%10.1f %15.2f centimeters\n", shoe, foot);
	return 0;
}