a=list(map(int,input().split())) b=list(map(int,input().split())) c=list(range(1,6)) if a==c: print(*b) elif a==b: print(*c) else: print(*a)