"Hello, Amigo!"

4
Task
Java Core,  level 5lesson 6
Locked
The simplest code: part 1
You already know that it's difficult to simplify, but it's easy to complicate things. Let's do something difficult (but not too difficult): simplify the code. To do this, we'll remove all inheritance and implementations that will be added automatically by the compiler.
4
Task
Java Core,  level 5lesson 6
Locked
The simplest code: part 2
This program has something superfluous in its implementation. It's something related to constructors, and can be automatically added by the compiler. Your task is to simplify the code by removing all constructors and calls of superclasses' constructors that are created and added automatically.
4
Task
Java Core,  level 5lesson 6
Locked
The simplest code: part 3
Again, superfluous code. And again, we need to figure out where it is. Speaking more plainly, we need to remove it. Remove all inheritance and constructors that will be generated automatically by the compiler without any extra work by the programmer.