package com.javarush.task.task12.task1211; //I don't speak concerning all of you. I know whom I have chosen. But that the Scripture may be fulfilled, //'He who eats bread with me has lifted up his heel against me.' (John 13:18) /* Абстрактный класс Pet */ public class Solution { public static void main(String[] args) { } public static abstract class Pet { public String getName() { return "Я - котенок"; } } }