Search
 
SCRIPT & CODE EXAMPLE
 

CPP

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
";
	else
		cout << "NO
";
}

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

PREVIOUS NEXT
Code Example
Cpp :: how to add 2 objects using operator overloading in c++ 
Cpp :: all in one c++ 
Cpp :: c++ 
Cpp :: C++ operation 
Cpp :: Marin and Photoshoot codeforces solution in c++ 
Cpp :: how to test if char in = to another in c++ 
Cpp :: c++ FAILED: objekt aufruf : symbol(s) not found for architecture x86_64 
Cpp :: Character convert c++ 
Cpp :: convert preorder to postorder calculator 
Cpp :: lnk2001 unresolved external symbol __imp_PlaySoundA 
Cpp :: count substrings codechef solution in c++ 
Cpp :: codeform 
Cpp :: what is imposter syndrome 
Cpp :: for in c++ example 
Cpp :: 2d vector size c++ 
Cpp :: Swap given nodes in a Doubly Linked List without modifying data 
Cpp :: namespace c++ 
Cpp :: rotateArray 
Cpp :: QMetaObject_invokeMethod 
Cpp :: (/~/+|/+$/g, ') 
Cpp :: c++ suare 
Cpp :: how to implement stack 
Cpp :: 18 in 12 hour time 
Cpp :: template function in class c++ 
Cpp :: c vs c++ vs c# 
Cpp :: c++ delete int 
C :: c colourful text 
C :: .gitkeep file 
C :: how to map one value to another in C 
C :: how to print int in c 
ADD CONTENT
Topic
Content
Source link
Name
4+2 =