提交时间:2023-12-31 08:40:19

运行 ID: 33637

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