using System;
public class Program
{
public static void Main()
string str1 = "THIS IS MY STRING";
string str2 = "this is my string";
Console.WriteLine("lower = {0}", str1.ToLower());
Console.WriteLine("upper = {0}", str2.ToUpper());
}