⌨️

[AtCoder]ABC-091|A - Two Coins

2023/01/15に公開

設問ページ

提出結果

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


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

    print('Yes' if a + b >= c else 'No')


if __name__ == "__main__":
    main()

Discussion