System.out.println("PROGRAMA DE CONVERSIÓN DE TEMPERATURAS");
int gradosCelcius = 30;
int gradosFarenheit = (int) ((gradosCelcius*1.8)+32);
System.out.println(gradosCelcius + " Grados Celcius es igual a: " + gradosFarenheit + " Grados Farenheit" );