class leela{
interface branch{
void branchname();
}
}
class Main implements leela.branch{
public void branchname(){
System.out.println("ECE");
}
public static void main(String[] args){
Main obj=new Main();
obj.branchname();
}
}
To embed this project on your website, copy the following code and paste it into your website's HTML: