public class secuenciapar { public static void main(String[] args) { int par=1, b=2; while (par<=10) { System.out.println(par*b); par++; } } }