Twisted Circuit
题面翻译
读入四个整数 0 0 0 或者 1 1 1,作为如图所示的电路图的输入。请输出按照电路图运算后的结果。
感谢@PC_DOS 提供的翻译
题目描述
输入格式
The input consists of four lines, each line containing a single digit 0 or 1.
输出格式
Output a single digit, 0 or 1.
样例 #1
样例输入 #1
0
1
1
0
样例输出 #1
0
#include<bits/stdc++.h>
using namespace std;
int i1,i2,i3,i4;
int main()
{cin>>i1>>i2>>i3>>i4;cout<<(((i1^i2)&(i3|i4))^((i2&i3)|(i1^i4)));return 0;
}