public static void Main()
Console.WriteLine("Enter your current salary : ") ;
salary = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Enter your years of services : ") ;
years = Convert.ToInt32(Console.ReadLine());
double bonus = (Convert.ToDouble(salary) * 5) / 100;
Console.WriteLine("your net bonus is = ") ;
Console.WriteLine(bonus);
{ Console.WriteLine("your years of services are less than 5 no increment.") ; }