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