public class DeepPointTest { public static void main(String args[]) { DeepPoint dp = new DeepPoint(10, 20, 4); dp.move(1, -1); dp.print(); } }