public class SyntaxExample12 { public static void main (String[] argv) { boolean tastesGreat = false; boolean lessFilling = true; boolean either; boolean both; either = tastesGreat || lessFilling; both = tastesGreat && lessFilling; System.out.println ("either=" + either + " both=" + both); } }