Untitled

Anonymous
plain_text
10/16/2022 2:25 PM
272 B
11
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...