mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
26 lines
343 B
Python
26 lines
343 B
Python
def problem_p02700(input_data):
|
|
import sys
|
|
|
|
input = sys.stdin.readline
|
|
|
|
from collections import *
|
|
|
|
A, B, C, D = list(map(int, input_data.split()))
|
|
|
|
while True:
|
|
|
|
C -= B
|
|
|
|
if C <= 0:
|
|
|
|
return "Yes"
|
|
|
|
exit()
|
|
|
|
A -= D
|
|
|
|
if A <= 0:
|
|
|
|
return "No"
|
|
|
|
exit()
|