#include <bits/stdc++.h> using namespace std; int main(){ int s; cin >> s; if((s / 1.2) == (s / 3.0) + 50) cout << "All" << endl; else if((s / 1.2) > (s / 3.0) + 50) cout << "Walk" << endl; else cout << "Bike" << endl; return 0; }