using System;
public class Program
{
public class Dog
private int age;
private string name;
public int Age
set {this.age=value;}
get{return age;}
}
public string Name
set{this.name=value;}
get{return name;}
public static void Main()
Dog roksi = new Dog();
roksi.Name = "Roksi";
roksi.Age = 3;
Console.WriteLine("Vazrastta na Roksi e" + roksi.Age);
Dog belcho = new Dog();
belcho.Name = "Belcho";
belcho.Age = 2;
Console.WriteLine("{0} e na vuzrast {1} godini", belcho.Name,belcho.Age);