Como multiplico apenas os booleans verdadeiros e imprimo eles

public class MMC {
	
	public static void main(String[] args) {
		int x1 = 6;
		int x2 = 7;
		int x3 = 2;
		
		if (x1 % 2 == 0 || x2 % 2 == 0 || x3 % 2 == 0) {
			boolean num2 = true;
		} else if (x1 % 3 == 0 || x2 % 3 == 0 || x3 % 3 == 0) {
			boolean num3 = true;
		} else if (x1 % 5 == 0 || x2 % 5 == 0 || x3 % 5 == 0) {
			boolean num5 = true;
		} else if (x1 % 7 == 0 || x2 % 7 == 0 || x3 % 7 == 0) {
			boolean num7 = true;
		}
	}
}