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

s=[]
n=int(input())
s.append(n)
i=1
while i<=n:
    m=int(input())
    s.append(m)
    i+=1
    
i=1
while i<=s[0]:
    t1=s[i]/1.2
    t2=s[i]/3+50
    if t1>t2:
        print("Bike")
    elif t1<t2:
        print("Walk")
    elif t1==t2:
        print("All")
    
    i+=1