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

n = int(input())
list1 = []
while n > 0:
	list1.append(int(input()))
	n -= 1
else:
	for x in list1:
		bk=x/3.0+50
		wk=x/1.2
		if bk<wk: 
			print("Bike")
		elif bk>wk:
			print("Walk")
		else:
			print("All")