using System.Collections.Generic;
using System.Threading.Tasks;
namespace Fung_HelloWorld
static void Main(string[] args)
Console.Write("What is your name? ");
string UserName = Console.ReadLine();
Console.WriteLine("Hello, " + UserName + "! Did you realize that your name contains " + UserName.Length +" characters?");
Console.Write("Enter a possible sales tax rate percentage: ");
TaxRate = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("At that rate, tax on " + Amount.ToString("C") + " would be " + TaxRate.ToString("C"));
Console.WriteLine("Press any key to continue");