/**************************************************************
 * Wind Chill Factor
 * Mark Goadrich
 * CSC 204 - Spring 2008
 **************************************************************/
public class WindChill{

	// Main method to run the program
	public static void main(String[] args) {
	
		double t = Double.parseDouble(args[0]);
		double v = Double.parseDouble(args[1]);
		
		double w = 35.74 + 0.625 * t + (0.4275 * t - 35.75) * Math.pow(v, 0.16);
		
		System.out.println("The Wind Chill is " + w);

	}
}
