public static void Main()
Console.WriteLine(" what is your name? ");
string name = Console.ReadLine();
Console.WriteLine(" how much money do you earn for an hour of work?");
string earn = Console.ReadLine();
int money = int.Parse(earn);
Console.WriteLine("how many hours do you work a month?");
string hours = Console.ReadLine();
int work = int.Parse(hours);
int budget = work * money;
Console.WriteLine("welcome {0} ", name );
Console.WriteLine("this month you made {0} ils", budget );
Console.WriteLine("--------------------------------");
Console.WriteLine("you have {0} ils for shopping", budget /2 );
Console.WriteLine("you have {0} ils for savings", budget /3 );
Console.WriteLine("you have {0} ils for expenses", budget /6);