Untitled

 avatar
unknown
plain_text
2 years ago
202 B
0
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...