Last updated Unknown Links: Computer Gates Not Gate Notes Since a and b are the same, it will always be the same as the input given Code 1 2 3 4 5 6 7 8 9 10 11 * Not gate: * out = not in */ CHIP Not { IN in; OUT out; PARTS: Nand(a=in, b=in, out=out); }