using System;
using System.Web;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
string str = "'poNumber': 'PID95787/BOYS & GIRLS'";
str = HttpUtility.HtmlDecode(str);
Console.WriteLine(str);
}