public static void Main()
Console.WriteLine("How much money do you have? I'll tell you its worth in other countries");
decimal usd = decimal.Parse(Console.ReadLine());
decimal euro = 1.03M * usd;
decimal Rupee = 82.82M * usd;
decimal CD = 1.38M * usd;
decimal yen = 147.84M * usd;
decimal pesos = 19.74M * usd;
decimal VietDong = 24865M * usd;
decimal HKD = 7.32M * usd;
decimal Pound = .90M * usd;
decimal AD = 1.59M * usd;
decimal Lira = 18.62M * usd;
Console.WriteLine(usd.ToString("C") +" is worth this much in other countries:");
Console.WriteLine(euro.ToString("#############.##")+" euros");
Console.WriteLine(Rupee.ToString("############.##")+" rupees");
Console.WriteLine(CD.ToString("############.##")+" canadian dollars");
Console.WriteLine(yen.ToString("############.##")+" yen");
Console.WriteLine(pesos.ToString("############.##")+" pesos");
Console.WriteLine(VietDong.ToString("############.##")+" vietnamese dong");
Console.WriteLine(HKD.ToString("############.##")+ " hong kong dollars");
Console.WriteLine(Pound.ToString("############.##")+" pounds");
Console.WriteLine(AD.ToString("############.##")+" australian dollars");
Console.WriteLine(Lira.ToString("############.##")+" lira");