⌨️

[AtCoder]ABC-128|A - Apple Pie

2023/02/14に公開

設問ページ

提出結果

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


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

    print((a * 3 + p) // 2)


if __name__ == "__main__":
    main()

Discussion