Fidan’s training
Fidan prepared well for the first IDDA Cup competition. She told her friends that she solved tasks in total over days by solving at most tasks per day. Leyla, being skeptical, wants to verify the feasibility of Fidan’s claim and seeks your help in writing a program to do so.
Input
The first line contains a single integer , denoting the number of test cases.
Each test case consists of a single line containing three integers: , and . Here, represents the total number of tasks solved by Fidan, while denotes the maximum number of tasks she was solving daily, and signifies the duration, in days, over which the tasks were solved.
Output
For each test case, on a new line, print "YES", if Fidan’s claim is true and “NO" otherwise. You may print each character of the string in uppercase or lowercase. For example, "Yes", "YES", "yes", and "yES" are all considered iden!cal.
Examples
Test case : Fidan can solve two tasks on the first day, two on the second day, and the remaining one on the third day.
Test case : Fidan cannot complete all ten tasks in three days.
Test case : Fidan can solve all seven tasks in one day.
Test case : Fidan cannot complete all three tasks in one day.
Scoring
In this task, points are awarded for each correct test. The maximum score is .