using System;
public class Dog
{
public string Breed;
public string Color;
public int Age;
public Dog(string strInput, string strInput2, int iInput3)
Breed = strInput;
Color = strInput2;
Age = iInput3;
}
public class Program
public static void Main()
Dog dog_one= new Dog("Bulldog","light grey", 5);
Dog dog_two=new Dog("Beagle","orange",6);