Start: Nov, 12, 2017 10:00:00
2017秋Python程序设计基础培训第二次作业
End: Nov, 19, 2017 12:00:00
Time elapsed:
Time remaining:

Problem_ID: F
Result: Accepted
Time: 103ms
Memory: 24436kB
Author: zwh
In contest: 1122

n=int(input())
while n>0:
    n=n-1
    s=int(input())
    if (s/1.2)>(s/3.0+27+23):
        print("Bike")
    elif (s/1.2)==(s/3.0+27+23) :
        print("All")
    else:
        print("Walk")