using System;
public class Dog
{
public string strBreed;
public string strColor;
public int iAge;
public Dog(string strInput1, string strInput2, int int1)
strBreed = strInput1;
strColor = strInput2;
iAge = int1;
}
public class Program
public static void Main()
Dog dog1 = new Dog("Bulldog","light gray",5);
Dog dog2 = new Dog("Beagle","orange",6);