P5681 [CSP-J2019 江西] 面积

· · 题解

#include <bits/stdc++.h>
using namespace std;
#define int long long
signed main(){//唯一难点就是开long long 
    int a,b,c; cin >> a >> b >> c;
    int A = a * a,B = b * c;
    if(A > B) cout << "Alice";
    else cout << "Bob";
    return 0;
}