var a = true var b = false print("a and b is \(a && b)") print("a or b is \(a || b)") print("Not a is \(!a)")