class Employee
{
public static void main(String[] args)
{
Employee emp=new Employee();
emp.develop();
int output = emp.work(10);
System.out.println("work" + " " + output );
}
public void develop()
{
}
public int work(int e)
{
return e * 10;
}
output:
Top comments (0)