#P5681. [CSP-J 2019 江西] 面积

[CSP-J 2019 江西] 面积

Problem Description

Alice has a square with side length aa, and Bob has a rectangle with length and width b,cb, c. Please tell them whose shape has a larger area.

Input Format

Only one line with three positive integers a,b,ca, b, c.

Output Format

Output only one line with a string. If the square’s area is larger, output Alice; otherwise, output Bob.

5 4 6
Alice
7 5 10
Bob

Hint

【Constraints】
For 30%30\% of the testdata, 1a,b,c1001 \le a, b, c \le 100, and b=cb = c;
For 80%80\% of the testdata, 1a,b,c1041 \le a, b, c \le 10^4;
For 100%100\% of the testdata, 1a,b,c1091 \le a, b, c \le 10^9.

【Sample 11 Explanation】
The square’s area is 2525, and the rectangle’s area is 2424.

【Sample 22 Explanation】
The square’s area is 4949, and the rectangle’s area is 5050.

Translated by ChatGPT 5