using System;
public class Program
{
public static void Main()
Console.WriteLine("what is the weather like outside");
string answer = Console.ReadLine();
if(answer != "sunny"){
Console.WriteLine("i hate the weather");
}else{
Console.WriteLine("the weather is good");
}