using System;
///using System.
public class Program
{
public class Person
private string name;
private int age;
public int Age
get{return this.age;}
set{ if (value <= 0 || value > 100)
throw new ArgumentException("Възрастта не може да е отрицателно число или да е по- голяма от 110");
this.age=value;
}
public static void Main()
Person p1=new Person();
p1.Age=55;
Console.WriteLine("Възрастта на р1 е {0}",p1.Age);