#C8668. Banner Creation Feasibility
Banner Creation Feasibility
Banner Creation Feasibility
You are given three integers: w, h, and a. The integers w and h represent the width and height of the stage respectively, and a is the minimum required area for a banner. Your task is to determine whether a banner can be constructed that fits within the stage and meets the minimum area requirement.
The area of the banner is calculated as \( w \times h \). A banner is considered possible if \( w \times h \geq a \); otherwise, it is impossible.
inputFormat
The input consists of a single line with three space-separated integers: w (the stage width), h (the stage height), and a (the minimum area required for the banner).
outputFormat
Output a single line containing either "POSSIBLE" if the banner can be created, or "IMPOSSIBLE" otherwise.
## sample6 4 12
POSSIBLE