
public class convert 
{
	public static void main(String[] arguments)
	{float fah, cel;
for(fah=0;fah<=300;fah=fah+20){
		cel=(fah-32)*5/9;
		System.out.printf("%.1f degrees Fahrenheit is %.1f degrees Celsius.\n",fah,cel);
	}
	}

}
