⌨️

[AtCoder]ABC-136|A - Transfer

2023/02/19に公開

設問ページ

提出結果

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


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

    d = a - b

    print(0 if d > c else c - d)


if __name__ == "__main__":
    main()

Discussion