public class ForLoopGauntlet3 { public static void main(String[] args) { for (int i = 1; i < 51; i++) { System.out.println(i*2); } } }