Swift Bitwise atau operator

var a = 12
var  b = 25

var result = a | b
print(result)    // 29
SAMER SAEID