⌨️

[AtCoder]ABC-113|A - Discount Fare

2023/02/01に公開

設問ページ

提出結果

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


def main():
    x, y = getIntMap()

    print(x + y // 2)


if __name__ == "__main__":
    main()

Discussion