Files
python/TangDou/XiTi/1037.cpp
HuangHai 1f397eca87 'commit'
2025-08-30 18:35:01 +08:00

19 lines
266 B
C++

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