Mishka
Anonymous
plain_text
10/16/2022 2:26 PM
280 B
22
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...