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: 96ms
Memory: 24300kB
Author: 7890
In contest: 1122

a=[]
n=int(input())
while n!=0:
    b=int(input())
    a.append(b)
    n-=1
for i in a:
    x=i/1.2
    y=50+i/3
    if x>y:
        print("Bike")
    elif x==y:
        print("All")
    else:
        print("Walk")