using System.Collections.Generic;
public Person( string name, string name2, int age, double salary )
set { this.name = value;}
set { this.name2 = value;}
get{ return this.salary;}
set { this.salary = value;}
Console.WriteLine( " {0} {1} get {2} leva", this.name, this.name2 , this.salary) ;
public void IncreaseSalary( double percent)
this.salary = this.salary + this.salary * percent / 100;
this.salary += this.salary * percent / 150;
this.salary += this.salary * percent / 200;
this.salary += this.salary * percent / 250;
public static void Main()
int lines = int.Parse(Console.ReadLine());
List<Person> persons = new List<Person>();
for (int i = 0; i < lines; i++)
var info = Console.ReadLine().Split();
var person = new Person(info[0], info[1], int.Parse(info[2]), double.Parse (info[3]));
var bonus = double.Parse (Console.ReadLine());
persons.ForEach( p => p.IncreaseSalary(bonus));
persons.ForEach( p => p.PrintInfo());