⌨️

[AtCoder]ABC-213|A - Bitwise Exclusive Or

2023/04/26に公開

設問ページ

提出結果

def getIntMap():
    return map(int, input().split())


def main():
    a, b = getIntMap()

    print(a ^ b)


if __name__ == "__main__":
    main()

Discussion