⌨️

[AtCoder]ABC-082|A - Round Up the Mean

2023/01/10に公開

設問ページ

提出結果

import math


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


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

    print(math.ceil((a + b) / 2))


if __name__ == "__main__":
    main()

Discussion