import java.io.*; // This appears in Core Web Programming from // Prentice Hall Publishers, and may be freely used // or adapted. 1997 Marty Hall, hall@apl.jhu.edu. public class WeatherInfo { public static void main(String[] args) { try { DataInputStream in = new DataInputStream(System.in); String data = in.readLine(); System.out.println ("Content-Type: text/plain\n" + "\n" + getWeather(data)); } catch(IOException ioe) {} } public static String getWeather(String city) { String[] cities = { "city=Chicago", "city=Dallas", "city=Los+Angeles", "city=Miami", "city=New+York", "city=Seattle" }; String[] weathers = { "rainy", "sunny", "sunny", "sunny", "partly-cloudy", "cloudy" }; String weather; for(int i=0; i