Horje
The Three Topics codechef solution in c++ Code Example
The Three Topics codechef solution in c++
#include<iostream>
#define ll long long
using namespace std;

void solve()
{
	ll a, b, c, x;
	cin >> a >> b >> c >> x;
	if (a==x||b==x||c==x)
		cout << "YES\n";
	else
		cout << "NO\n";
}

int main()
{
	solve();
	return 0;
}




Cpp

Related
ue4 execute delegate from blueprint Code Example ue4 execute delegate from blueprint Code Example
google test assert throw Code Example google test assert throw Code Example
Minimizing the dot product codechef in c++ Code Example Minimizing the dot product codechef in c++ Code Example
how to split string into words c++ Code Example how to split string into words c++ Code Example
Processing a string- CodeChef Solution in CPP Code Example Processing a string- CodeChef Solution in CPP Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
13