⌨️

[AtCoder]ABC-117|A - Entrance Examination

2023/02/05に公開

設問ページ

提出結果

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


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

    print(t / x)


if __name__ == "__main__":
    main()

Discussion