public static void Main()
string input = Console.ReadLine();
foreach(var item in input)
normalized += item.ToString();
normalized += item.ToString();
string result = normalized;
if(normalized.Length > 1 && normalized[normalized.Length - 1] == '/')
result = normalized.Substring(0, normalized.Length - 1);
Console.WriteLine(result);