#include <stdio.h>
int main() {
float celsius, fahrenheit;
printf("Introduce grados Celsius: ");
fahrenheit = (celsius * 9 / 5) + 32;
printf("Equivalente en Fahrenheit: %f\n", fahrenheit
);
return 0;
}
I2luY2x1ZGUgPHN0ZGlvLmg+CgppbnQgbWFpbigpIHsKICAgIGZsb2F0IGNlbHNpdXMsIGZhaHJlbmhlaXQ7CgogICAgcHJpbnRmKCJJbnRyb2R1Y2UgZ3JhZG9zIENlbHNpdXM6ICIpOwogICAgc2NhbmYoIiVmIiwgJmNlbHNpdXMpOwoKICAgIGZhaHJlbmhlaXQgPSAoY2Vsc2l1cyAqIDkgLyA1KSArIDMyOwoKICAgIHByaW50ZigiRXF1aXZhbGVudGUgZW4gRmFocmVuaGVpdDogJWZcbiIsIGZhaHJlbmhlaXQpOwoKICAgIHJldHVybiAwOwp9Cg==