Credit Score Solution || Codechef March Lunchtime 2022

       

Credit Score Solution 

Codechef March Lunchtime 2022
Problem Code : CREDSCORE

Solution :

#include <bits/stdc++.h>
#define ll long long int
#define ull unsigned long long int
using namespace std;

int main()
{
    ll x;
    cin >> x;
    if (x >= 750)
    {
        cout << "YES";
    }
    else
    {
        cout << "NO";
    }
}

Comments