// Ausrechnen von Fahrenheit ---> Celsius !!
import java.lang.*;

public class celsius
{
public static void main (String[] args)
{
double fahrenheit;
double celsius;
fahrenheit = 20;
celsius = (fahrenheit -32) * 5.0 / 9.0;
System.out.println ("20 Fahrenheit sind " + celsius + " Celsius");
}
}