use strict; print ord("0") ^ ord("0"), "\n";#0, which is not "0" print ord("0") ^ ord("1"), "\n";#1, which is not "1" print ord("1") ^ ord("0"), "\n";#1, which is not "1" print ord("1") ^ ord("1"), "\n";#0, which is not "0"