Problem5395--货币支付

5395: 货币支付

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

你有 $a$ 个价值为 $n$ 元的硬币和 $b$ 个价值为 $1$ 元的硬币,现在问你是否可以凑出 $s$ 元钱。

Input

输入只有一行为四个整数 $a,\ b,\ n,\ s$。都不超过 $10^9$。

Output

如果可以凑出来,输出YES,否则输出NO。

Sample 1 Input

1 2 3 4

Sample 1 Output

YES

Source/Category