⌨️

[AtCoder]ABC-196|A - Difference Max

2023/04/09に公開

設問ページ

提出結果

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


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

    print(b - c)


if __name__ == "__main__":
    main()

Discussion