hand = list(map(int, input().split())) def rockPaperScissors(hand): isEvenNumber = sum(hand) if hand[0] == hand[1]: print("Drew") elif isEvenNumber%2 == 0: # 偶数なら大きいほうが勝つ # 最大値がどちらか? if hand.index(max(hand)) == 0: print("Won") else: print("Lost") elif isEvenNumber%2 == 1: if hand.index(min(hand)) == 0: print("Won") else: print("Lost") else: print("Error..SomethingWrong index...") rockPaperScissors(hand)