public class Main {
public static void main(String[] args) {
int temperatura = 30;
int conversor = (int) ((temperatura * 1.8) + 32);
System.out.println("o tempo em Fahrenheit está em " + conversor);
}
}