// import becker.robots.*; /** A program to test arithmetic * * @author Duncan Buell * * Program written: 14 October 2007 */ public class Main { public static void main (String[] args) { int a,b,c; for(int i = 46300; i <= 46400; ++i) { System.out.println(i + " times " + i + " equals " + i*i); } } } // public class Main