// You write this.
//
// If you make Structure a class, Mobile must extend it.
// If you make Structure an interface, Mobile must implement it.

public class Mobile {	
	// This constructor is mandatory by problem specification
	// You have to figure out how to handle it

	public Mobile(Branch left, Branch right) {
		// You write this
	}
}