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: 24436kB
Author: digy
In contest: 1122

t=int(input())
while t>0 :
      t=t-1
      s=float(input())
              
      n=0
      bike=50.0+s/3.0
      walk=s/1.2
      if bike>walk :
          print("Walk")
      elif bike==walk :
          print("All")
      else :
        print("Bike")