public class Main {
public static void main(String[] args) {
System.out.println("Bienvenido");
double temperaturaCelsius = 50;
int temperaturaFahrenheit = (int) (temperaturaCelsius * 1.8) + 32;
System.out.println(String.format("La temperatura %2f grados centigrados, es %d en grados Fahrenheit", temperaturaCelsius, temperaturaFahrenheit));
}
}