提交时间:2021-07-10 18:12:15

运行 ID: 14112

#include <bits/stdc++.h> using namespace std; int main() { int a,b,c; cin>>a>>b>>c; if(a*a>b*c) cout<<"Alice"<<endl; else cout<<"Bob"<<endl; return 0; }