codeflash-internal/experiments/pie_test_set/p02394.py

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"