using System;
public class Program
{
public static void Main()
String climate;
Console.WriteLine("Enter the condition of the climate");
climate=Console.ReadLine();
if(climate=="good")
Console.WriteLine(" We Can Go For shopping beacuse the climate is {0}",climate);
}