public static void Main()
Console.WriteLine("enter the salary");
s=int.Parse(Console.ReadLine());
Console.WriteLine("enter the taxrate");
t=double.Parse(Console.ReadLine());
Console.WriteLine("the tax amount is {0} and the salary amount is {1}", ta,sa );