public static void Main()
Console.WriteLine("enter the string 1");
string s1=Console.ReadLine();
Console.WriteLine("enter the string 2");
string s2=Console.ReadLine();
if(s1.Length==s2.Length){
}else if(s1.Length>s2.Length){
int z=s1.Length-s2.Length;
int z=s2.Length-s1.Length;