mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
22 lines
263 B
Python
22 lines
263 B
Python
def problem_p02394(input_data):
|
|
a = input_data.split()
|
|
|
|
b = list(map(int, a))
|
|
|
|
W = b[0]
|
|
|
|
H = b[1]
|
|
|
|
x = b[2]
|
|
|
|
y = b[3]
|
|
|
|
r = b[4]
|
|
|
|
if (r <= x <= (W - r)) and (r <= y <= (H - r)):
|
|
|
|
return "Yes"
|
|
|
|
else:
|
|
|
|
return "No"
|