import java.util.Scanner;
public class Graus {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("Digite em Celsius a temperatura que deseja converter para Fahrenheit: ");
double temperatura = scanner.nextDouble();
double conversao = (temperatura * 1.8) + 32;
System.out.println("O resultado é: " + conversao + " graus Fahrenheit.");
}
}