⌨️

[AtCoder]ABC-351|A - The bottom of the ninth

2024/05/22に公開

設問ページ

提出結果

def getIntList():
    return list(map(int, input().split()))


def main():
    a = getIntList()
    b = getIntList()

    print(sum(a) - sum(b) + 1)


if __name__ == "__main__":
    main()

Discussion