import java.awt.Rectangle;

public class MoveRectangle
{  public static void main(String[] args)
   {  Rectangle cerealBox = new Rectangle(5, 10, 20, 30);
      cerealBox.translate(15, 25);
      System.out.println(cerealBox);
   }
}