import java.util.Scanner;
public class Conversao {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("""
Seja bem-vindo!
Vamos transformar sua temperatura de graus Celsius para Fahrenheit.
Preciso que você digite a temperatura que deseja:
""");
int temperatura = sc.nextInt();
System.out.println();
double fahrenheit = (temperatura * 1.8) + 32;
System.out.println("A temperatura em fahrenheit é " + fahrenheit);
}
}