class
Fahrenheit_celcius{
public static
void main(String args[]){
Scanner sc= new
Scanner(System.in);
System.out.println("Enter
the temperature in Fahrenheit");
float temper_f =
sc.nextFloat();
float temper_c =
(temper_f-32)*5/9;
System.out.println("The
temperature in celcius is "+temper_c);
}}