1. Add a method, heavier in the following Gentlemen class.  The method will compare two gentlemen's weights and return true or false.

public class Gentlemen
{
	private int Height;//Data type variable name;
	private int Weight;
	private String Name;

	public Gentlemen(int W, int H, String initialName)
	{
		Height=H;
		Weight=W;
		Name = initialName;
	}

	public void gainWeight(int W)
	{
		Weight = Weight+W;
	}
	
	public int getWeight()
	{
		return Weight;	
	}

	public int getHeight()
	{
		return Height;	
	}

	public String getName()
	{
		return name;
	}

	public boolean taller(Gentlemen thatman)
	{
		if(Height > thatman.getHeight())
			return true;
		else 
			return false;
	}
}

2. Create an application class with main method to do the following jobs.

a. Take user's information about a gentleman's height, weight, and name.

b. Declare an object of Gentlemen with user's information.

c. Declare another object with the information of weight 180, height 6, and name as Daniel.

d. Use dot operator to call heavier method of the second object to compare with the first object and display the result.