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

while True:
    try:
        T=int(input())
        for i in range(1,T+1):
            n=int(input())
            walk=n/1.2
            bike=50+n/3.0
            if walk > bike:
                print ("Bike")
            if walk < bike:
                print ("Walk")
            if walk == bike:
                print ("All")
        
    except EOFError:
        break