Untitled
unknown
plain_text
3 years ago
202 B
3
Indexable
#include <iostream>
using namespace std;
int main()
{
int W, H, R;
cin >> W>>H>>R;
R = 2 * R;
if (R <= H && R <= W) {
cout << "YES";
}
else cout << "NO";
}
Editor is loading...