int n;
double w=0,b=0;
cin>>n;
w=n/1.2;
b=n/3.0+50;
if(w<b) cout<<"Walk";
else if(w==b) cout<<"All";
else cout<<"Bike";