Start: Apr, 17, 2017 10:00:00
Python程序设计基础培训第二次作业
End: Apr, 23, 2017 14:00:00
Time elapsed:
Time remaining:

Problem_ID: F
Result: Accepted
Time: 134ms
Memory: 21432kB
Author: 13777156513
In contest: 1086

#-*- coding: UTF-8 -*-
while True:
	bi=0.0
	wa=0.0
	list1=[]
	n=int(raw_input())
	for j in range(n):
		n1=float(raw_input())
		list1.append(n1)
	for h in range(n):
		bi=list1[h]/3+50
		wa=list1[h]/1.2
		if bi<wa:
			print"Bike"
		elif bi==wa:
			print"All"
		else:
			print"Walk"