/****************************************************************************** Online Java Compiler. Code, Compile, Run and Debug java program online. Write your code in this editor and press "Run" button to execute it. *******************************************************************************/ public class Main { public static void main(String[] args) { int a; for (a = 11; a < 100; a++){ if (a % 2 == 0 && a % 7 == 0) System.out.println(a); } } }