public class SyvtabelFejl { public static void main(String[] arg) { int n = 1; while (n <= 10) { System.out.println(n+" : "+ 7*n); n = n - 1; } } }