#C5954. Compare the Product with a Given Number

    ID: 49660 Type: Default 1000ms 256MiB

Compare the Product with a Given Number

Compare the Product with a Given Number

Given three integers x, y, and z, determine whether the product of x and y is greater than z. In mathematical terms, check if \( x \times y > z \). If true, output "Product is Greater"; otherwise, output "Product is Not Greater".

inputFormat

The input is read from stdin and consists of three space-separated integers \(x\), \(y\), and \(z\). For example: 2 5 8

outputFormat

Output a single line to stdout containing either "Product is Greater" if \(x \times y > z\), or "Product is Not Greater" if not.

## sample
2 5 8
Product is Greater