⌨️

[AtCoder]ABC-202|A - Three Dice

2023/04/15に公開

設問ページ

提出結果

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


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

    print(21 - sum([a, b, c]))


if __name__ == "__main__":
    main()

Discussion