#include <stdio.h>

main(void) {
	float cent, fah; 
	
	printf ("Introduce una temperatura en Centígrados:");
	scanf ("%f", &cent);
	fah = 1.8*cent+32;
	
	printf ("La temperatura en Fahrenheit es: %f", fah);
}
