public static void Main()
Console.Write("number of working days per month for the worker:");
int day_1m=int.Parse(Console.ReadLine());
Console.Write("daily wage:");
double d_w=double.Parse(Console.ReadLine());
Console.Write("over time hours:");
int t_h=int.Parse(Console.ReadLine());
Console.Write("one hour fee:");
double h_1f=double.Parse(Console.ReadLine());
double totalwage=(day_1m*d_w)+(t_h*h_1f);
double taxAmount=totalwage*0.25;
double savingsAmount=totalwage*0.07;
double netwage=totalwage-(taxAmount+savingsAmount);
Console.WriteLine("fee before discount{0} taxAmount{1} savingsAmount{2} netwage{3} ", totalwage,taxAmount,savingsAmount,netwage);