#include<iostream> using namespace std; int a,b,c; int main(){ cin>>a>>b>>c; if(a*a>b*c){ cout<<"Alice"; }else{ cout<<"Bob"; } return 0; }