public class Squares { public static void main(String args[]){ int n = 100; for(int i = 1; i <= n; i++) System.out.println(i+" "+i*i); } }