Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

CREDSCORE codechef solution

#include <iostream>
using namespace std;

int main() {
	// your code goes here
	int x;
		cin >> x;
		if (x >= 750)
			cout << "YES
";
		else
			cout << "NO
";
	return 0;
}
Source by www.codechef.com #
 
PREVIOUS NEXT
Tagged: #CREDSCORE #codechef #solution
ADD COMMENT
Topic
Name
2+6 =