N = int(input()) a = list(input().split()) b = list(input().split()) col = ["Red", "Orange", "Yellow", "Green", "Cyan", "Blue", "Violet"] for i in col: if a.count(i)!=b.count(i): print(i)