提交时间:2025-03-23 19:53:23

运行 ID: 314002

#include<bits/stdc++.h> using namespace std; int main() { long long n; double s,b; cin>>n; s=27+23+n/3.0; b=n/1.2; if(s<b){ cout<<"Bike"; } else if(s==b){ cout<<"All";} else{ cout<<"Walk"; } return 0; }