📅  最后修改于: 2022-03-11 14:56:08.279000             🧑  作者: Mango
An or game is a simple gate which sends an output of 1 if either of its inputs
are 1. It has two or more inputs and only one output.
Inputs and Outputs:
A | B | C
0 | 0 | 0
1 | 0 | 1
0 | 1 | 1
1 | 1 | 1
A(Input 1)
B(Input 2)
C(Output)