import java.util.Scanner;

/**
 * Converts a Celsius temperature to an equivalent Fahrenheit temperature.
 *
 * @author YOUR NAME HERE
 * @version TODAY'S DATE HERE
 */
public class Celsius {

   /**
    * Inputs the temperature in celsius and outputs the equivalent temperature
    * in Fahrenheit. In addition, formats the results with 1 decimal place.
    *
    * EXAMPLES - Provide 3 examples for testing:
    *      Celsius    Fahrenheit
    * 1.
    * 2.
    * 3.
    *
    * @param args command line arguments
    */
   public static void main(String[] args) {

   }

}