public static void Main()
String EmpName = "James bond";
int MealAll = Bs * 5/100;
int TrvlAll = Bs * 8/100;
int TotAll = MealAll + TrvlAll;
int TotS = Bs + Gs + TotAll;
Console.WriteLine("Employee Number \t:\t" +EmpNo);
Console.WriteLine("Employee Name \t :\t" +EmpName);
Console.WriteLine("Basic Salary \t :\t" +Bs);
Console.WriteLine("Hourly rate \t :\t" +Hr);
Console.WriteLine("Hourly worked \t :\t" +Hw);
Console.WriteLine("Gross wage \t :\t" +Gs);
Console.WriteLine("Bonus \t :\t" +Bns);
Console.WriteLine("Meal Allowance \t :\t" +MealAll);
Console.WriteLine("Travel Allowance\t:\t" +TrvlAll);
Console.WriteLine("Total Allowance \t:\t" +TotAll);
Console.WriteLine("Loan \t :\t" +Lon);
Console.WriteLine("Total Salary \t :\t" +TotS);
Console.WriteLine("Net Salary \t :\t" +NS);