using System;
public class Program
{
//מספיסה את האות הראשונה והאחרונה במחרוזת
public static void Main()
Console.WriteLine("enter a string or text");
string s=Console.ReadLine();
Console.WriteLine(s[0] +"*" + s[s.Length-1]);
}