diff --git a/AliceNdMarks b/AliceNdMarks new file mode 100644 index 0000000..c64156f --- /dev/null +++ b/AliceNdMarks @@ -0,0 +1,19 @@ +SOLUTION FOR PROBLEM ALICE AND MARKS, PROBLEM CODE - MARKSTW, CODECHEF + +#include +using namespace std; + +int main() +{ + int x, y; + cin >> x >> y; + if (x >= (2 * y)) + { + cout << "Yes"; + } + else + { + cout << "No"; + } + return 0; +}