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