Answers for "Increase IQ codechef solution in c++"

C++
0

Increase IQ codechef solution in c++

#include<iostream>
#define ll long long
using namespace std;

void solve()
{
	ll n;
	cin >> n;
	ll t;
	t = n + 7;
	if (t > 170)
		cout << "YES\n";
	else
		cout << "NO\n";
}

int main()
{
	solve();
	return 0;
}
Posted by: Guest on March-28-2022

Code answers related to "Increase IQ codechef solution in c++"

Browse Popular Code Answers by Language