[TOC]

xor

Element-wise exclusive OR operation

Usage

xor(A, B)

Examples

Input
xor(1,1)
xor(1,0)
xor(-1,1)
xor(-1,0)
Output
ans = 
0

ans = 
1

ans = 
0

ans = 
1