while True: try: a = list(map(int,input().split())) b = a[0] c = a[1] if c > b: print("能") else: print("不能") except: break