a, b = input().split() ans = '' for i in range(len(a) - 1, - 1, -1): if a[i] != b[i]: ans += '1' else: ans += '0' print(ans)