public class Main {

	public static void main(String[] args) {
		Pet p = new Pet("jeemz","white");
		System.out.print("Pet name is " + p.getName() + " color is " + p.getColor() +" sound is " + p.voice());
	

	}

}