cs=int(raw_input().strip()) for i in range(cs): x=int(raw_input().strip()) if x>100: print 'Bike' elif x<100: print 'Walk' else: print 'All'