#P5681. Comparing Areas: Square vs Rectangle

    ID: 18909 Type: Default 1000ms 256MiB

Comparing Areas: Square vs Rectangle

Comparing Areas: Square vs Rectangle

Alice has a square with side length \(a\), and Bob has a rectangle with sides \(b\) and \(c\). Determine whose shape has a larger area. The area of the square is given by \(a^2\), while the area of the rectangle is given by \(b \times c\).

If the areas are equal, print "Equal".

inputFormat

The input consists of a single line containing three space-separated numbers: \(a\) \(b\) \(c\). Here, \(a\) is the side length of the square, and \(b\) and \(c\) are the dimensions of the rectangle.

outputFormat

Print "Alice" if the area of the square is larger, "Bob" if the area of the rectangle is larger, or "Equal" if both areas are the same.

sample

2 3 4
Bob