local x = true local y = false print(x or y) print(x and y) print(not x) print(false or 'Alejandra') print(true and 'Ricardo')