package com.javaex.practice01; public class Problem04 { public static void main(String[] args) { for (int i = 0; i <=9; i++) { for(int j = 1; j <= 10; j++) { System.out.print(j + i + " "); } System.out.println(); } } }