using System;
public class Program
{
public static void Main()
string str1 = "LONDON";
string str2 = "london";
Console.WriteLine(str1 == str2);
}