Answer:
public Point (Point p) {
 this.x = p.x;
 this.y = p.y;
}
Step-by-step explanation:
The name of the constructor must be same as the class name, in this case it is Point. 
The constructor does not have a return type and takes required parameters, in this case it takes a Point object. 
Lastly, we need to initialize the variables, the x and y variables in the class need to be set to the Point p's x and y.