using System;
public class Program
{
public static void Main()
string test = string.Format("{0}/{1}", "test", "123");
Console.WriteLine(test);
}