⌨️

[AtCoder]ABC-125|A - Biscuit Generator

2023/02/11に公開

設問ページ

提出結果

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


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

    print(t // a * b)


if __name__ == "__main__":
    main()

Discussion