using System;
class Program
{
static void Main() {
string s = "8 - 0 - 2 - 6";
string code = String.Format("Code = {{{0}}}", s);
Console.WriteLine(code);
string result = String.Format("Result = {{C# - 18}}");
Console.WriteLine(result);
}
}
/*
run:
Code = {8 - 0 - 2 - 6}
Result = {C# - 18}
*/