Mishka

 avatar
unknown
plain_text
3 years ago
210 B
4
Indexable
#include <iostream>

 using namespace std;
int main()
{

	int W, H, R, D;
	cin >> W >> H >> R;

	D = R * 2;

	if (D <= W && D <= H) {
	
		cout << "YES";

	}

	else {

		cout << "NO";

	}
}
Editor is loading...