Try it out yourself 3
can a class implement two interfaces with methods of the same name?
interface I1 { int f(); }
interface I2 { int f(); }
interface I3 { double f(); }
class A implements I1, I2 {
class B implements I1, I3 {
double f() { return 1.0; }