import java.util.*;

/**
 * CelsiusToFahrenheit will convert a Celsius temperature to a Fahrenheit 
 * temperature.
 *
 * @author <Your Name Here>
 * @version 
 */
public class CelsiusToFahrenheit
{
	/**
	 * main reads in the temperature in celsius and outputs it
    * with no more than 1 decimal place
	 *
	 * EXAMPLES - Provide 3 for testing
	 *		Celcius		Fahrenheit
	 *
	 *
	 *
	 *
	 * @param args command line arguments unused
	 */
	public static void main (String[] args)
	{
	   // declarations of constants followed by declarations of vbls
      
      
      
      
      // get input and do other initializations as required by the problem
      
      
      
      
      
      // perform the calculations
      
      
      
      
      
      // output the results
	
   
   
   }
}
