0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-23 23:28:48 +00:00

P5681 [CSPJX2019]面积【民间数据】

R41434567
This commit is contained in:
Baoshuo Ren 2020-11-06 22:09:57 +08:00 committed by Baoshuo Ren
parent 5227876e8d
commit ce30a7194a
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

10
problem/P5681/P5681.cpp Normal file
View File

@ -0,0 +1,10 @@
#include <bits/stdc++.h>
using namespace std;
int main() {
long long a, b, c;
cin >> a >> b >> c;
cout << (a * a > b * c ? "Alice" : "Bob") << endl;
return 0;
}