public static void Main()
Console.Write("Input employee salary : ");
s = float.Parse(Console.ReadLine());
Console.WriteLine("Employee work full-time? : y");
Console.Write("Get salary : {0:N} Baht\n",s-s*0.03);
Console.Write("Employee work full-time? :n");
Console.Write("Get salary : {0:N} Baht",s);
Console.Write("Input employee salary : ");
s = float.Parse(Console.ReadLine());
Console.WriteLine("Employee work full-time? : y");
Console.Write("Get salary : {0:N} Baht\n",s-s*0.03);
Console.WriteLine("Employee work full-time? :n");
Console.Write("Get salary : {0:N} Baht",s);