import java.util.*;

/**
 * CelsiusToFahrenheit will convert a Celsius temperature to an
 * equivalent Fahrenheit temperature.
 *
 * @author <Your Names Here>
 * @version 
 */
public class CelsiusToFahrenheit
{

    /**
     * Input the temperature in celsius and output the equivalent Fahrenheit 
     * temperature. Format the results with 1 decimal place.
     *
     * EXAMPLES - Provide 3 examples for testing
     *      Celcius    Fahrenheit
     * 1.
     * 2.
     * 3.
     *
     * @param args command line arguments unused
     */
    public static void main (String[] args)
    {
        // declarations of constants followed by declarations of variables
      
      
      
        // perform initialization and get the required input
    
      
      
      
        // perform the conversion calculations
      
      
      
      
        // output the results
  

   
    }
}
