Tennis Game

문제

Tennis is a racket sport that is played by two opposing players on S sets. Each set consists of at least K games. A set is won by a player if that player wins at least K games and at least 2 games more than the opponent. Once a set is won, the set is ended and the match continues to a new set (if any) where both players start from 0 game won for that new set.

For example, let K = 6, then a set can be ended with any of the following.

On the other hand, a set cannot be ended with any of the following.

You are given K, S and N, determine whether there could be such a tennis match with S sets to ends exactly with N games. If there is such a tennis match, then output “YES” (without quotes) in a single line, otherwise, output “NO” (without quotes) in a single line.

For example, let K = 4, S = 2, and N = 14. It is possible to have such a tennis match. One the possibilities is as follows.

There are a total of N = 6 + 4 + 4 + 0 = 14 games on S = 2 sets where each set is won if a player won at least K = 4 games and at least 2 games more than the opponent.

입력

Input contains three integers K S N (2 ≤ K ≤ 109; 1 ≤ S, N ≤ 109) in a line representing the minimum number of games to win a set, the total number of sets, and the total number of games, respectively.

출력

Output in a line a string “YES” or “NO” (without quotes) whether it is possible to have such a tennis match.

예제 입력 1 복사

4 2 14

예제 입력 2 복사

3 1 2

예제 입력 3 복사

6 5 181

예제 출력 1 복사

YES

예제 출력 2 복사

NO

예제 출력 3 복사

YES