#C763. Cake Baking Feasibility Checker

    ID: 51522 Type: Default 1000ms 256MiB

Cake Baking Feasibility Checker

Cake Baking Feasibility Checker

You are given a total number of eggs and are required to bake a certain number of cakes. Each cake requires a fixed number of eggs. Your task is to determine whether the available eggs are sufficient to bake the required number of cakes.

The problem can be formulated using the inequality:

[ \text{total_eggs} \geq \text{cakes} \times \text{eggs_per_cake} ]

If the condition holds, output True; otherwise, output False.

Input is provided via stdin and output should be printed to stdout.

inputFormat

Input is given as three space-separated integers in one line: total_eggs, cakes, eggs_per_cake.

outputFormat

Output a single word: 'True' if the available eggs are enough to bake all the cakes, otherwise 'False'.## sample

20 5 4
True