interface a
{
void display();
}
interface b
{
void display();
}
class ab implements a,b
{